diff options
author | Jim Wilson <wilson@cygnus.com> | 1998-04-18 15:42:48 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1998-04-18 08:42:48 -0700 |
commit | a1ecb5ca07e249b185dce0eec10139b65deddb8d (patch) | |
tree | 0bd7aa4ae114e9515a1c389c00fff4dfb58c48e7 /gcc | |
parent | a2a05b0a358ce7cbd768224e99ea194a51e39150 (diff) | |
download | gcc-a1ecb5ca07e249b185dce0eec10139b65deddb8d.zip gcc-a1ecb5ca07e249b185dce0eec10139b65deddb8d.tar.gz gcc-a1ecb5ca07e249b185dce0eec10139b65deddb8d.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/regmove.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ea74c53..0ead4e8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. 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') |