re PR target/19888 (g++.old-deja/g++.eh/badalloc1.C execution test fails on ia64-hpux)

PR target/19888
	* g++.old-deja/g++.eh/badalloc1.C: increase arena_size on hpux.

From-SVN: r97048
This commit is contained in:
Steve Ellcey 2005-03-25 17:09:09 +00:00 committed by Steve Ellcey
parent 510d8ecc26
commit c3861e7ad1
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-03-25 Steve Ellcey <sje@cup.hp.com>
PR target/19888
* g++.old-deja/g++.eh/badalloc1.C: increase arena_size on hpux.
2005-03-25 Zdenek Dvorak <dvorakz@suse.cz>
* gcc.dg/20050325-1.c: Fix a typo.

View File

@ -14,8 +14,8 @@ extern "C" void *memcpy(void *, const void *, size_t);
#ifdef STACK_SIZE
const int arena_size = 256;
#else
#if defined(__FreeBSD__) || defined(__sun__)
// FreeBSD with threads and Solaris with threads require even more
#if defined(__FreeBSD__) || defined(__sun__) || defined(__hpux__)
// FreeBSD, Solaris and HP-UX with threads require even more
// space at initialization time. FreeBSD 5 now requires over 131072 bytes.
const int arena_size = 262144;
#else