2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only %s -verify -pedantic
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
2008-10-03 07:30:31 +08:00
|
|
|
|
|
|
|
// Math stuff
|
|
|
|
|
|
|
|
float g0 = __builtin_huge_val();
|
|
|
|
double g1 = __builtin_huge_valf();
|
|
|
|
long double g2 = __builtin_huge_vall();
|
|
|
|
float g3 = __builtin_inf();
|
|
|
|
double g4 = __builtin_inff();
|
|
|
|
long double g5 = __builtin_infl();
|
|
|
|
|
|
|
|
// GCC misc stuff
|
|
|
|
|
|
|
|
extern int f();
|
|
|
|
|
2009-04-28 11:13:54 +08:00
|
|
|
int h0 = __builtin_types_compatible_p(int,float);
|
2008-10-03 07:30:31 +08:00
|
|
|
//int h1 = __builtin_choose_expr(1, 10, f());
|
|
|
|
//int h2 = __builtin_expect(0, 0);
|
2012-10-06 22:42:22 +08:00
|
|
|
int h3 = __builtin_bswap16(0x1234) == 0x3412 ? 1 : f();
|
|
|
|
int h4 = __builtin_bswap32(0x1234) == 0x34120000 ? 1 : f();
|
|
|
|
int h5 = __builtin_bswap64(0x1234) == 0x3412000000000000 ? 1 : f();
|
2008-10-06 13:42:39 +08:00
|
|
|
|
|
|
|
short somefunc();
|
|
|
|
|
2008-12-05 13:09:56 +08:00
|
|
|
short t = __builtin_constant_p(5353) ? 42 : somefunc();
|
|
|
|
|
2008-10-06 13:42:39 +08:00
|
|
|
|