diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-18 15:42:48 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-18 15:42:48 +0000 |
commit | 2eadeca81c2476deb52cb6765401d1369e24ab75 (patch) | |
tree | 0bd7aa4ae114e9515a1c389c00fff4dfb58c48e7 /gcc/regmove.c | |
parent | 9e56255a3e2e9a18956e3ea3714fd2ab6a540e8b (diff) | |
download | gcc-2eadeca81c2476deb52cb6765401d1369e24ab75.tar.gz |
Fix regmove typos spotted by H.J. Lu.
* regmove.c (fixup_match_1): In three places, in flag_exceptions
check, change p to q.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19282 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/regmove.c')
-rw-r--r-- | gcc/regmove.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/regmove.c b/gcc/regmove.c index d3c25fd4055..5e805086bb9 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') |