diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-01 21:55:12 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-01 21:55:12 +0000 |
commit | 5acfe29d59af89dbc9d777b850ef68552a8610d1 (patch) | |
tree | 109b3bc7a1238e3c14897e24e922cb7fadb46de0 /libiberty/dyn-string.c | |
parent | 1462ac889d54846bf3424e9ec03113083cd94c5b (diff) | |
download | gcc-5acfe29d59af89dbc9d777b850ef68552a8610d1.tar.gz |
2002-04-01 Phil Edwards <pme@gcc.gnu.org>
* cp-demangle.c (__cxa_demangle): Also protect with IN_GLIBCPP_V3.
(is_gnu_v3_mangled_ctor, is_gnu_v3_mangled_ctor): Conditionally
not compile if IN_GLIBCPP_V3 defined.
* dyn-string.c: Also allow IN_GLIBCPP_V3 to change allocation scheme.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51708 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty/dyn-string.c')
-rw-r--r-- | libiberty/dyn-string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libiberty/dyn-string.c b/libiberty/dyn-string.c index c41d7ccac3e..1da76c2110d 100644 --- a/libiberty/dyn-string.c +++ b/libiberty/dyn-string.c @@ -50,7 +50,7 @@ Boston, MA 02111-1307, USA. */ abort if an allocation fails. Instead, percolate an error code up through the call chain. */ -#ifdef IN_LIBGCC2 +#if defined(IN_LIBGCC2) || defined(IN_GLIBCPP_V3) #define RETURN_ON_ALLOCATION_FAILURE #endif |