Sign in
android
/
toolchain
/
llvm-project
/
refs/heads/android-t-preview-1
/
.
/
clang
/
test
/
Misc
/
no-warn-in-system-macro.c
blob: a319b14c9c3f07b1087542fced922f2ff317cb97 [
file
] [
log
] [
blame
] [
edit
]
// RUN: %clang_cc1 -isystem %S -Wdouble-promotion -fsyntax-only %s 2>&1 | FileCheck -allow-empty %s
// CHECK-NOT: warning:
#include
<
no
-
warn
-
in
-
system
-
macro
.
c
.
inc
>
int
main
(
void
)
{
double
foo
=
1.0
;
if
(
isnan
(
foo
))
return
1
;
return
0
;
}