aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn David Anglin <dave.anglin@nrc-cnrc.gc.ca>2004-11-23 02:29:38 +0000
committerJohn David Anglin <danglin@gcc.gnu.org>2004-11-23 02:29:38 +0000
commit557b8e7256a18df4f20bf5c42da39bafa12398c6 (patch)
tree4f4ffba17585c29079d28ed37fb830138c5835ed
parent0bb360df4ca478da0350f238e73f60139d7e34d9 (diff)
downloadgcc-557b8e7256a18df4f20bf5c42da39bafa12398c6.zip
gcc-557b8e7256a18df4f20bf5c42da39bafa12398c6.tar.gz
gcc-557b8e7256a18df4f20bf5c42da39bafa12398c6.tar.bz2
re PR pch/14940 (PCH largefile test fails on various platforms)
PR pch/14940 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __hppa__. From-SVN: r91066
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/config/host-linux.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index b4126fd..5956745 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,8 @@
2004-11-22 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
+ PR pch/14940
+ * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __hppa__.
+
PR rtl-optimization/14838
* emit-rtl.c (get_first_nonnote_insn): Don't assume first insn is a
note.
diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c
index 717f96c..6a07617 100644
--- a/gcc/config/host-linux.c
+++ b/gcc/config/host-linux.c
@@ -77,6 +77,8 @@
# define TRY_EMPTY_VM_SPACE 0x8000000000
#elif defined(__s390__)
# define TRY_EMPTY_VM_SPACE 0x60000000
+#elif defined(__hppa__)
+# define TRY_EMPTY_VM_SPACE 0xa0000000
#elif defined(__sparc__) && defined(__LP64__)
# define TRY_EMPTY_VM_SPACE 0x8000000000
#elif defined(__sparc__)