(simplify_relational_operation): Fix typos; use
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 9 Mar 1994 17:07:12 +0000 (12:07 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 9 Mar 1994 17:07:12 +0000 (12:07 -0500)
 ARG_POINTER_REGNUM and FRAME_POINTER_REGNUM in condtionals.

From-SVN: r6730

gcc/cse.c

index b029478..3a49494 100644 (file)
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -4432,7 +4432,7 @@ simplify_relational_operation (code, mode, op0, op1)
             be zero, but a SYMBOL_REF can due to #pragma weak.  */
          if (((NONZERO_BASE_PLUS_P (op0) && op1 == const0_rtx)
               || GET_CODE (op0) == LABEL_REF)
-#if FRAME_POINTER_REGNO != ARG_POINTGER_REGNO
+#if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
              /* On some machines, the ap reg can be 0 sometimes.  */
              && op0 != arg_pointer_rtx
 #endif
@@ -4443,7 +4443,7 @@ simplify_relational_operation (code, mode, op0, op1)
        case NE:
          if (((NONZERO_BASE_PLUS_P (op0) && op1 == const0_rtx)
               || GET_CODE (op0) == LABEL_REF)
-#if FRAME_POINTER_REGNO != ARG_POINTER_REGNO
+#if FRAME_POINTER_REGNUM != ARG_POINTER_REGNUM
              && op0 != arg_pointer_rtx
 #endif
              )