diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-09 12:07:12 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-03-09 12:07:12 -0500 |
commit | 1a7c818bd6043c4e86bbfc4c0befb3783dfd203d (patch) | |
tree | 29bc8cf1cf6377abbb195b7b74a274a75aee13fb | |
parent | 2cca6e3f3dd2b10d8a136a15d994c9511f2fc932 (diff) | |
download | gcc-1a7c818bd6043c4e86bbfc4c0befb3783dfd203d.zip gcc-1a7c818bd6043c4e86bbfc4c0befb3783dfd203d.tar.gz gcc-1a7c818bd6043c4e86bbfc4c0befb3783dfd203d.tar.bz2 |
(simplify_relational_operation): Fix typos; use
ARG_POINTER_REGNUM and FRAME_POINTER_REGNUM in condtionals.
From-SVN: r6730
-rw-r--r-- | gcc/cse.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 ) |