Commit 778e0677 by Jeffrey A Law Committed by Jeff Law

* cse.c (cse_insn): Fix dumb thinko in last change.

From-SVN: r28466
parent cf836b00
Tue Aug 3 03:51:20 1999 Jeffrey A Law (law@cygnus.com)
* cse.c (cse_insn): Fix dumb thinko in last change.
Tue Aug 3 10:36:13 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* reload1.c (maybe_fix_stack_asms): Declare CONSTRAINTS as
......
......@@ -7429,7 +7429,7 @@ cse_insn (insn, libcall_insn)
if NEXT_INSN (p) had INSN_DELETED_P set. */
if (GET_CODE (NEXT_INSN (p)) != NOTE
|| NOTE_LINE_NUMBER (NEXT_INSN (p)) == NOTE_INSN_DELETED)
p = delete_insn (NEXT_INSN (p));
p = PREV_INSN (delete_insn (NEXT_INSN (p)));
else
p = NEXT_INSN (p);
}
......
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