aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>1999-04-07 21:36:05 +0000
committerRichard Kenner <kenner@vlsi1.ultra.nyu.edu>1999-04-07 21:36:05 +0000
commit97514c46cada32527b1dd13fd505221f5179af73 (patch)
tree635c034ebc2a65dde279d837464438850d00a516
parentda65384a17c6e3e6827b57195ef3ce39ed8b8f24 (diff)
(add_long_const): Correct conditional for test on too-large constants.
git-svn-id: https://gcc.gnu.org/svn/gcc/branches/premerge-fsf-branch@26278 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/config/alpha/alpha.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c
index 1193a3a7cfd..0f59d071dcf 100644
--- a/gcc/config/alpha/alpha.c
+++ b/gcc/config/alpha/alpha.c
@@ -2006,7 +2006,7 @@ add_long_const (file, c, in_reg, out_reg, temp_reg)
HOST_WIDE_INT extra = 0;
/* We don't have code to write out constants larger than 32 bits. */
-#if HOST_BITS_PER_LONG_INT == 64
+#if HOST_BITS_PER_WIDE_INT == 64
if ((unsigned HOST_WIDE_INT) c >> 32 != 0)
abort ();
#endif