Forgot to commit these...

From-SVN: r17555
This commit is contained in:
Jeff Law 1998-01-30 01:04:59 -07:00
parent f266c82f18
commit c5afbb4907
2 changed files with 9 additions and 0 deletions

View File

@ -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) \

View File

@ -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;