From a1ecb5ca07e249b185dce0eec10139b65deddb8d Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Sat, 18 Apr 1998 15:42:48 +0000 Subject: Fix regmove typos spotted by H.J. Lu. * regmove.c (fixup_match_1): In three places, in flag_exceptions check, change p to q. From-SVN: r19282 --- gcc/regmove.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/regmove.c') diff --git a/gcc/regmove.c b/gcc/regmove.c index d3c25fd..5e80508 100644 --- a/gcc/regmove.c +++ b/gcc/regmove.c @@ -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') -- cgit v1.1