diff options
author | Andrew Pinski <andrew_pinski@playstation.sony.com> | 2009-03-27 13:28:44 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2009-03-27 06:28:44 -0700 |
commit | b0957daf070e13e7c298370996e2db3a6ca3c959 (patch) | |
tree | a38451092e158c8419463dbf8921beb19a053478 /gcc/ginclude | |
parent | 48b6cd9d20b473886b39b2a206765da747a88484 (diff) | |
download | gcc-b0957daf070e13e7c298370996e2db3a6ca3c959.zip gcc-b0957daf070e13e7c298370996e2db3a6ca3c959.tar.gz gcc-b0957daf070e13e7c298370996e2db3a6ca3c959.tar.bz2 |
re PR c++/36799 ([c++0x] error on va_copy in -std=c++0x mode)
gcc/
2009-03-27 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR c++/36799
* ginclude/stdarg.h (va_copy): Define also for __GXX_EXPERIMENTAL_CXX0X__.
gcc/testsuite/
2009-03-27 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR c++/36799
* g++.dg/other/var_copy-1.C: New test.
From-SVN: r145106
Diffstat (limited to 'gcc/ginclude')
-rw-r--r-- | gcc/ginclude/stdarg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ginclude/stdarg.h b/gcc/ginclude/stdarg.h index c9ddd6b..5061f34 100644 --- a/gcc/ginclude/stdarg.h +++ b/gcc/ginclude/stdarg.h @@ -50,7 +50,7 @@ typedef __builtin_va_list __gnuc_va_list; #define va_start(v,l) __builtin_va_start(v,l) #define va_end(v) __builtin_va_end(v) #define va_arg(v,l) __builtin_va_arg(v,l) -#if !defined(__STRICT_ANSI__) || __STDC_VERSION__ + 0 >= 199900L +#if !defined(__STRICT_ANSI__) || __STDC_VERSION__ + 0 >= 199900L || defined(__GXX_EXPERIMENTAL_CXX0X__) #define va_copy(d,s) __builtin_va_copy(d,s) #endif #define __va_copy(d,s) __builtin_va_copy(d,s) |