aboutsummaryrefslogtreecommitdiff
path: root/test/Misc/no-warn-in-system-macro.c
blob: a319b14c9c3f07b1087542fced922f2ff317cb97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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;
}