Fix regmove typos spotted by H.J. Lu.
authorJim Wilson <wilson@cygnus.com>
Sat, 18 Apr 1998 15:42:48 +0000 (15:42 +0000)
committerJim Wilson <wilson@gcc.gnu.org>
Sat, 18 Apr 1998 15:42:48 +0000 (08:42 -0700)
* regmove.c (fixup_match_1): In three places, in flag_exceptions
check, change p to q.

From-SVN: r19282

gcc/ChangeLog
gcc/regmove.c

index ea74c5340a1ab5657cbfa9c99355c1342a224915..0ead4e8b1438ca5be13d93aabbbb4b3c2c42ec1e 100644 (file)
@@ -1,3 +1,8 @@
+Sat Apr 18 15:41:16 1998  Jim Wilson  <wilson@cygnus.com>
+
+       * regmove.c (fixup_match_1): In three places, in flag_exceptions
+       check, change p to q.
+
 Sat Apr 18 15:30:49 1998  Jim Wilson  <wilson@cygnus.com>
 
        * gcc.c (lang_specific_driver): Add new parm type to prototype.
index d3c25fd4055a15778d4e1038670cd16899fdf0e4..5e805086bb9b5efa7e9b819288889baa852d8dac 100644 (file)
@@ -1345,7 +1345,7 @@ fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number,
                     it is inside an EH region.  There is no easy way to tell,
                     so we just always break when we see a CALL_INSN if
                     flag_exceptions is nonzero.  */
-                 if (flag_exceptions && GET_CODE (p) == CALL_INSN)
+                 if (flag_exceptions && GET_CODE (q) == CALL_INSN)
                    {
                      q = 0;
                      break;
@@ -1520,7 +1520,7 @@ fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number,
                 it is inside an EH region.  There is no easy way to tell,
                 so we just always break when we see a CALL_INSN if
                 flag_exceptions is nonzero.  */
-             if (flag_exceptions && GET_CODE (p) == CALL_INSN)
+             if (flag_exceptions && GET_CODE (q) == CALL_INSN)
                {
                  q = 0;
                  break;
@@ -1604,7 +1604,7 @@ fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number,
             is inside an EH region.  There is no easy way to tell so we
             just always break when we see a CALL_INSN if flag_exceptions
             is nonzero.  */
-         if (flag_exceptions && GET_CODE (p) == CALL_INSN)
+         if (flag_exceptions && GET_CODE (q) == CALL_INSN)
            break;
 
          if (GET_RTX_CLASS (GET_CODE (q)) != 'i')