diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-12-08 08:28:08 +0000 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-12-08 08:28:08 +0000 |
commit | feed26ff07b77e89e810dcef8fff72efbad846f3 (patch) | |
tree | 5d984a8d59a7a90e7135fef9f98f8318e1014d2d /clang/test/Headers/stdbool.cpp | |
parent | 037115c29f7bc7bf984c334a465afe264d75a050 (diff) | |
download | bcm5719-llvm-feed26ff07b77e89e810dcef8fff72efbad846f3.tar.gz bcm5719-llvm-feed26ff07b77e89e810dcef8fff72efbad846f3.zip |
In stdbool.h, define bool, false, true only in gnu++98
GCC has meanwhile corrected that with the similar
<https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=216679> "C++11
explicitly forbids macros for bool, true and false."
Differential Revision: https://reviews.llvm.org/D40167
llvm-svn: 320135
Diffstat (limited to 'clang/test/Headers/stdbool.cpp')
-rw-r--r-- | clang/test/Headers/stdbool.cpp | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/clang/test/Headers/stdbool.cpp b/clang/test/Headers/stdbool.cpp index 7c927db441b..0110a45b2dc 100644 --- a/clang/test/Headers/stdbool.cpp +++ b/clang/test/Headers/stdbool.cpp @@ -1,13 +1,19 @@ -// RUN: %clang_cc1 -E -dM %s | FileCheck --check-prefix=CHECK-GNU-COMPAT %s +// RUN: %clang_cc1 -std=gnu++98 -E -dM %s | FileCheck --check-prefix=CHECK-GNU-COMPAT-98 %s +// RUN: %clang_cc1 -std=gnu++11 -E -dM %s | FileCheck --check-prefix=CHECK-GNU-COMPAT-11 %s // RUN: %clang_cc1 -std=c++98 -E -dM %s | FileCheck --check-prefix=CHECK-CONFORMING %s // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -verify -Weverything %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-GNU-COMPAT-98: #define _Bool bool +// CHECK-GNU-COMPAT-98: #define bool bool +// CHECK-GNU-COMPAT-98: #define false false +// CHECK-GNU-COMPAT-98: #define true true + +// CHECK-GNU-COMPAT-11: #define _Bool bool +// CHECK-GNU-COMPAT-11-NOT: #define bool bool +// CHECK-GNU-COMPAT-11-NOT: #define false false +// CHECK-GNU-COMPAT-11-NOT: #define true true // CHECK-CONFORMING-NOT: #define _Bool // CHECK-CONFORMING: #define __CHAR_BIT__ |