Commit a1ecb5ca by Jim Wilson Committed by Jim Wilson

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
parent a2a05b0a
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> Sat Apr 18 15:30:49 1998 Jim Wilson <wilson@cygnus.com>
* gcc.c (lang_specific_driver): Add new parm type to prototype. * gcc.c (lang_specific_driver): Add new parm type to prototype.
......
...@@ -1345,7 +1345,7 @@ fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number, ...@@ -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, 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 so we just always break when we see a CALL_INSN if
flag_exceptions is nonzero. */ flag_exceptions is nonzero. */
if (flag_exceptions && GET_CODE (p) == CALL_INSN) if (flag_exceptions && GET_CODE (q) == CALL_INSN)
{ {
q = 0; q = 0;
break; break;
...@@ -1520,7 +1520,7 @@ fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number, ...@@ -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, 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 so we just always break when we see a CALL_INSN if
flag_exceptions is nonzero. */ flag_exceptions is nonzero. */
if (flag_exceptions && GET_CODE (p) == CALL_INSN) if (flag_exceptions && GET_CODE (q) == CALL_INSN)
{ {
q = 0; q = 0;
break; break;
...@@ -1604,7 +1604,7 @@ fixup_match_1 (insn, set, src, src_subreg, dst, backward, operand_number, ...@@ -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 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 just always break when we see a CALL_INSN if flag_exceptions
is nonzero. */ is nonzero. */
if (flag_exceptions && GET_CODE (p) == CALL_INSN) if (flag_exceptions && GET_CODE (q) == CALL_INSN)
break; break;
if (GET_RTX_CLASS (GET_CODE (q)) != 'i') if (GET_RTX_CLASS (GET_CODE (q)) != 'i')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment