blob: b295130702f5d8b1af5113dca85c7c48e18a4e3b [file] [log] [blame] [edit]
// RUN: %clang_cc1 -isystem %S -Wdouble-promotion -fsyntax-only %s 2>&1 | FileCheck -allow-empty %s
// CHECK: warning:
// CHECK: expanded from macro 'ISNAN'
// CHECK: expanded from macro 'isnan'
#include <warn-in-system-macro-def.c.inc>
#define isnan(x) \
(sizeof (x) == sizeof (float) \
? __isnanf (x) \
: sizeof (x) == sizeof (double) \
? __isnan (x) : __isnanl (x))
int main(void)
{
double foo = 1.0;
if (ISNAN(foo))
return 1;
return 0;
}