From: Richard Kenner Date: Wed, 9 Mar 1994 17:07:12 +0000 (-0500) Subject: (simplify_relational_operation): Fix typos; use X-Git-Tag: misc/cutover-egcs-0~7213 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a7c818bd6043c4e86bbfc4c0befb3783dfd203d;p=thirdparty%2Fgcc.git (simplify_relational_operation): Fix typos; use ARG_POINTER_REGNUM and FRAME_POINTER_REGNUM in condtionals. From-SVN: r6730 --- diff --git a/gcc/cse.c b/gcc/cse.c index b0294782c0ad..3a494948222c 100644 --- 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 )