From: Stephan Bergmann Date: Fri, 8 Dec 2017 08:28:08 +0000 (+0000) Subject: In stdbool.h, define bool, false, true only in gnu++98 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=668d6ffa85130abe2e7590b8f40220d34d58299b;p=clang In stdbool.h, define bool, false, true only in gnu++98 GCC has meanwhile corrected that with the similar "C++11 explicitly forbids macros for bool, true and false." Differential Revision: https://reviews.llvm.org/D40167 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@320135 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Headers/stdbool.h b/lib/Headers/stdbool.h index 0467893f34..5cb66b55d0 100644 --- a/lib/Headers/stdbool.h +++ b/lib/Headers/stdbool.h @@ -32,12 +32,15 @@ #define true 1 #define false 0 #elif defined(__GNUC__) && !defined(__STRICT_ANSI__) -/* Define _Bool, bool, false, true as a GNU extension. */ +/* Define _Bool as a GNU extension. */ #define _Bool bool +#if __cplusplus < 201103L +/* For C++98, define bool, false, true as a GNU extension. */ #define bool bool #define false false #define true true #endif +#endif #define __bool_true_false_are_defined 1 diff --git a/test/Headers/stdbool.cpp b/test/Headers/stdbool.cpp index 7c927db441..0110a45b2d 100644 --- a/test/Headers/stdbool.cpp +++ b/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 #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__