1 // RUN: %clang_cc1 -E -triple x86_64-linux-gnu -std=c89 %s -o - | FileCheck --check-prefix=CHECK-NO-1X %s
2 // RUN: %clang_cc1 -E -triple x86_64-linux-gnu -std=iso9899:199409 %s -o - | FileCheck --check-prefix=CHECK-NO-1X %s
3 // RUN: %clang_cc1 -E -triple x86_64-linux-gnu -std=c99 %s -o - | FileCheck --check-prefix=CHECK-NO-1X %s
4 // RUN: %clang_cc1 -E -triple x86_64-linux-gnu -std=c11 %s -o - | FileCheck --check-prefix=CHECK-1X %s
6 // RUN: %clang_cc1 -E -triple x86_64-linux-gnu -std=gnu89 %s -o - | FileCheck --check-prefix=CHECK-NO-1X %s
7 // RUN: %clang_cc1 -E -triple x86_64-linux-gnu -std=gnu99 %s -o - | FileCheck --check-prefix=CHECK-NO-1X %s
8 // RUN: %clang_cc1 -E -triple x86_64-linux-gnu -std=gnu11 %s -o - | FileCheck --check-prefix=CHECK-1X %s
10 #if __has_feature(c_atomic)
15 // CHECK-1X: has_atomic
16 // CHECK-NO-1X: no_atomic
18 #if __has_feature(c_static_assert)
19 int has_static_assert();
21 int no_static_assert();
23 // CHECK-1X: has_static_assert
24 // CHECK-NO-1X: no_static_assert
26 #if __has_feature(c_generic_selections)
27 int has_generic_selections();
29 int no_generic_selections();
31 // CHECK-1X: has_generic_selections
32 // CHECK-NO-1X: no_generic_selections
34 #if __has_feature(c_alignas)
39 // CHECK-1X: has_alignas
40 // CHECK-NO-1X: no_alignas
42 #if __has_feature(c_alignof)
47 // CHECK-1X: has_alignof
48 // CHECK-NO-1X: no_alignof
50 #if __has_feature(c_thread_local)
51 int has_thread_local();
53 int no_thread_local();
56 // CHECK-1X: has_thread_local
57 // CHECK-NO-1X: no_thread_local
59 #if __STDC_VERSION__ > 199901L
66 // CHECK-NO-1X: is_not_c1x