* g++.old-deja/g++.eh/badalloc1.C (arena_size): Bump up to 262144
to support new requirements on FreeBSD 5.
From-SVN: r91536
+2004-11-30 Loren James Rittle <ljrittle@acm.org>
+
+ * g++.old-deja/g++.eh/badalloc1.C (arena_size): Bump up to 262144
+ to support new requirements on FreeBSD 5.
+
2004-11-30 Devang Patel <dpatel@apple.com>
PR 18702
#else
#if defined(__FreeBSD__) || defined(__sun__)
// FreeBSD with threads and Solaris with threads require even more
-// space at initialization time.
-const int arena_size = 131072;
+// space at initialization time. FreeBSD 5 now requires over 131072 bytes.
+const int arena_size = 262144;
#else
const int arena_size = 32768;
#endif