Commit c3861e7a by Steve Ellcey Committed by Steve Ellcey

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
parent 510d8ecc
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment