aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-cppbuiltin.c
diff options
context:
space:
mode:
authorBenjamin Kosnik <bkoz@redhat.com>2007-01-05 21:24:16 +0000
committerBenjamin Kosnik <bkoz@gcc.gnu.org>2007-01-05 21:24:16 +0000
commitc573f4d5c6b1ac612911b8b5e77531a233d1cca1 (patch)
tree3fd1161c2d987c111b138af8e11e84d4a2d284ea /gcc/c-cppbuiltin.c
parent0f0707d106cdfe2904928adfdbd7faa6b369008c (diff)
downloadgcc-c573f4d5c6b1ac612911b8b5e77531a233d1cca1.zip
gcc-c573f4d5c6b1ac612911b8b5e77531a233d1cca1.tar.gz
gcc-c573f4d5c6b1ac612911b8b5e77531a233d1cca1.tar.bz2
c-cppbuiltin.c (c_cpp_builtins): __GXX_EXPERIMENTAL_CPP0X__ to __GXX_EXPERIMENTAL_CXX0X__.
2007-01-05 Benjamin Kosnik <bkoz@redhat.com> * c-cppbuiltin.c (c_cpp_builtins): __GXX_EXPERIMENTAL_CPP0X__ to __GXX_EXPERIMENTAL_CXX0X__. * doc/cpp.texi: Same. From-SVN: r120502
Diffstat (limited to 'gcc/c-cppbuiltin.c')
-rw-r--r--gcc/c-cppbuiltin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-cppbuiltin.c b/gcc/c-cppbuiltin.c
index dc0c343..4eca2d46 100644
--- a/gcc/c-cppbuiltin.c
+++ b/gcc/c-cppbuiltin.c
@@ -1,5 +1,5 @@
/* Define builtin-in macros for the C family front ends.
- Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+ Copyright (C) 2002, 2003, 2004, 2005, 2007 Free Software Foundation, Inc.
This file is part of GCC.
@@ -410,7 +410,7 @@ c_cpp_builtins (cpp_reader *pfile)
if (warn_deprecated)
cpp_define (pfile, "__DEPRECATED");
if (flag_cpp0x)
- cpp_define (pfile, "__GXX_EXPERIMENTAL_CPP0X__");
+ cpp_define (pfile, "__GXX_EXPERIMENTAL_CXX0X__");
}
/* Note that we define this for C as well, so that we know if
__attribute__((cleanup)) will interface with EH. */