From patchwork Mon Jan 9 08:48:26 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: should not define bool, true or false as macros for C++ Date: Sun, 08 Jan 2012 22:48:26 -0000 From: Jonathan Wakely X-Patchwork-Id: 134973 Message-Id: To: gcc-patches Cc: "Joseph S. Myers" , jason@gcc.gnu.org GCC's implementation of is not valid for C++11 because [support.runtime] p8 says "The header and the header shall not define macros named bool, true, or false." This patch adds a libstdc++ test for that requirement and adjusts stdbool.h to meet it. I've left _Bool defined in C++ as a GNU extension. It's conceivable someone is relying on these macros being defined in C++, in which case we could only define them when __cplusplus < 201103L, but IMHO it's better to not define them at all. Tested x86_64-linux, OK for trunk? gcc/ * ginclude/stdbool.h (true, false, bool): Do not define for C++. libstdc++/ * testsuite/18_support/headers/cstdbool/macros.cc: New. --- a/gcc/ginclude/stdbool.h +++ b/gcc/ginclude/stdbool.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1998, 1999, 2000, 2009 Free Software Foundation, Inc. +/* Copyright (C) 1998, 1999, 2000, 2009, 2012 Free Software Foundation, Inc. This file is part of GCC. @@ -36,11 +36,8 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #else /* __cplusplus */ -/* Supporting in C++ is a GCC extension. */ +/* Supporting _Bool in C++ is a GCC extension. */ #define _Bool bool -#define bool bool -#define false false -#define true true #endif /* __cplusplus */ --- /dev/null +++ b/libstdc++-v3/testsuite/18_support/headers/cstdbool/macros.cc @@ -0,0 +1,38 @@ +// { dg-do compile } +// { dg-options "-std=gnu++11" } + +// Copyright (C) 2012 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING3. If not see +// . + +#include + +#ifndef __bool_true_false_are_defined +# error "The header fails to define a macro named __bool_true_false_are_defined" +#endif + +#ifdef bool +# error "The header defines a macro named bool" +#endif + +#ifdef true +# error "The header defines a macro named true" +#endif + +#ifdef false +# error "The header defines a macro named false" +#endif +