From: Jeff Law Date: Fri, 30 Jan 1998 08:04:59 +0000 (-0700) Subject: Forgot to commit these... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5afbb49078b47f3efdeb5382c2e849abb527c94;p=gcc.git Forgot to commit these... From-SVN: r17555 --- diff --git a/gcc/genattrtab.c b/gcc/genattrtab.c index 3354aa7ad3f..c3c721fd767 100644 --- a/gcc/genattrtab.c +++ b/gcc/genattrtab.c @@ -353,6 +353,9 @@ static char *alternative_name; int reload_completed = 0; +/* Similarly since PRESERVE_DEATH_INFO_REGNO_P might reference "optimize". */ +int optimize = 0; + /* Simplify an expression. Only call the routine if there is something to simplify. */ #define SIMPLIFY_TEST_EXP(EXP,INSN_CODE,INSN_INDEX) \ diff --git a/gcc/rtl.c b/gcc/rtl.c index a6f53d4b719..acfe6c2f406 100644 --- a/gcc/rtl.c +++ b/gcc/rtl.c @@ -768,8 +768,14 @@ 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;