diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2001-11-15 12:48:07 -0500 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2001-11-15 12:48:07 -0500 |
commit | f6b08fe890f8f037e1e18e36af092ca95e1dd82b (patch) | |
tree | 2c3159579ea8f833cc6419a948e000e4a49c2a1d | |
parent | 22f86c323f068216531f990631854d97a23fe3a5 (diff) | |
download | gcc-f6b08fe890f8f037e1e18e36af092ca95e1dd82b.zip gcc-f6b08fe890f8f037e1e18e36af092ca95e1dd82b.tar.gz gcc-f6b08fe890f8f037e1e18e36af092ca95e1dd82b.tar.bz2 |
reduce arena size for small targets
From-SVN: r47065
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C b/gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C index ac1fdd7..6b4a928 100644 --- a/gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C +++ b/gcc/testsuite/g++.old-deja/g++.eh/badalloc1.C @@ -4,7 +4,7 @@ // Check we can throw a bad_alloc exception when malloc dies -static __SIZE_TYPE__ arena[32767]; // so things can initialize +static __SIZE_TYPE__ arena[64]; // so things can initialize static int fail; static unsigned pos; |