diff options
author | Jeff Law <law@gcc.gnu.org> | 1998-01-30 01:04:59 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-30 01:04:59 -0700 |
commit | c5afbb49078b47f3efdeb5382c2e849abb527c94 (patch) | |
tree | 42f200dcfbac0fdbd8c2e0db10bfb87dfe43ef9e /gcc/rtl.c | |
parent | f266c82f188717d73c970824e79b6f4c2270f844 (diff) | |
download | gcc-c5afbb49078b47f3efdeb5382c2e849abb527c94.zip gcc-c5afbb49078b47f3efdeb5382c2e849abb527c94.tar.gz gcc-c5afbb49078b47f3efdeb5382c2e849abb527c94.tar.bz2 |
Forgot to commit these...
From-SVN: r17555
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r-- | gcc/rtl.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -768,9 +768,15 @@ read_rtx (infile) #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG tmp_wide = atol (tmp_char); #else +#ifdef HAVE_ATOLL + tmp_wide = atoll (tmp_char); +#else +#ifdef HAVE_ATOQ tmp_wide = atoq (tmp_char); #endif #endif +#endif +#endif XWINT (return_rtx, i) = tmp_wide; break; |