blob: b7efece64e8363f0c307f6960c6ef49248fa79ec [file] [log] [blame]
Richard Smithab506ad2014-10-20 23:26:58 +00001// RUN: %clang_cc1 -std=c99 -E %s -o - | FileCheck --check-prefix=CHECK-PED-NONE %s
2// RUN: %clang_cc1 -std=c99 -pedantic-errors -E %s -o - | FileCheck --check-prefix=CHECK-PED-ERR %s
Peter Collingbourned5d410f2011-05-13 20:54:45 +00003
4// CHECK-PED-NONE: no_dummy_extension
5#if !__has_extension(dummy_extension)
6int no_dummy_extension();
7#endif
8
9// Arbitrary feature to test that has_extension is a superset of has_feature
10// CHECK-PED-NONE: attribute_overloadable
11#if __has_extension(attribute_overloadable)
12int attribute_overloadable();
13#endif
14
15// CHECK-PED-NONE: has_c_static_assert
16// CHECK-PED-ERR: no_c_static_assert
17#if __has_extension(c_static_assert)
18int has_c_static_assert();
19#else
20int no_c_static_assert();
21#endif
22
23// CHECK-PED-NONE: has_c_generic_selections
24// CHECK-PED-ERR: no_c_generic_selections
25#if __has_extension(c_generic_selections)
26int has_c_generic_selections();
27#else
28int no_c_generic_selections();
29#endif
30
Peter Collingbourne60188eb2011-10-14 23:44:46 +000031// CHECK-PED-NONE: has_c_alignas
32// CHECK-PED-ERR: no_c_alignas
33#if __has_extension(c_alignas)
34int has_c_alignas();
35#else
36int no_c_alignas();
37#endif
38
Nico Weber736a9932014-12-03 01:25:49 +000039// CHECK-PED-NONE: has_c_alignof
40// CHECK-PED-ERR: no_c_alignof
41#if __has_extension(c_alignof)
42int has_c_alignof();
43#else
44int no_c_alignof();
45#endif
46
Richard Smith2cca7b52012-02-25 10:41:10 +000047// Arbitrary feature to test that the extension name can be surrounded with
48// double underscores.
49// CHECK-PED-NONE: has_double_underscores
50#if __has_extension(__c_alignas__)
51int has_double_underscores();
52#endif