mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
510d8ecc26
commit
c3861e7ad1
|
@ -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>
|
2005-03-25 Zdenek Dvorak <dvorakz@suse.cz>
|
||||||
|
|
||||||
* gcc.dg/20050325-1.c: Fix a typo.
|
* gcc.dg/20050325-1.c: Fix a typo.
|
||||||
|
|
|
@ -14,8 +14,8 @@ extern "C" void *memcpy(void *, const void *, size_t);
|
||||||
#ifdef STACK_SIZE
|
#ifdef STACK_SIZE
|
||||||
const int arena_size = 256;
|
const int arena_size = 256;
|
||||||
#else
|
#else
|
||||||
#if defined(__FreeBSD__) || defined(__sun__)
|
#if defined(__FreeBSD__) || defined(__sun__) || defined(__hpux__)
|
||||||
// FreeBSD with threads and Solaris with threads require even more
|
// FreeBSD, Solaris and HP-UX with threads require even more
|
||||||
// space at initialization time. FreeBSD 5 now requires over 131072 bytes.
|
// space at initialization time. FreeBSD 5 now requires over 131072 bytes.
|
||||||
const int arena_size = 262144;
|
const int arena_size = 262144;
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue