OSDN Git Service

Forgot to commit these...
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 30 Jan 1998 08:04:59 +0000 (08:04 +0000)
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 30 Jan 1998 08:04:59 +0000 (08:04 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17555 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/genattrtab.c
gcc/rtl.c

index 3354aa7..c3c721f 100644 (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)    \
index a6f53d4..acfe6c2 100644 (file)
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -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;