diff options
Diffstat (limited to 'clang/test/Headers/stdbool.cpp')
-rw-r--r-- | clang/test/Headers/stdbool.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/clang/test/Headers/stdbool.cpp b/clang/test/Headers/stdbool.cpp new file mode 100644 index 0000000..a252cca --- /dev/null +++ b/clang/test/Headers/stdbool.cpp @@ -0,0 +1,14 @@ +// RUN: %clang_cc1 -E -dM %s | FileCheck --check-prefix=CHECK-GNU-COMPAT %s +// RUN: %clang_cc1 -std=c++98 -E -dM %s | FileCheck --check-prefix=CHECK-CONFORMING %s +#include <stdbool.h> +#define zzz + +// CHECK-GNU-COMPAT: #define _Bool bool +// CHECK-GNU-COMPAT: #define bool bool +// CHECK-GNU-COMPAT: #define false false +// CHECK-GNU-COMPAT: #define true true + +// CHECK-CONFORMING-NOT: #define _Bool +// CHECK-CONFORMING: #define __CHAR_BIT__ +// CHECK-CONFORMING-NOT: #define false false +// CHECK-CONFORMING: #define zzz |