mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-30 17:05:11 +08:00
Forgot to commit these...
From-SVN: r17555
This commit is contained in:
parent
f266c82f18
commit
c5afbb4907
@ -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) \
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user