* gcse.c (gcse_emit_move_after): Correct typo in REG_EQUAL note.

From-SVN: r59271
This commit is contained in:
Roger Sayle 2002-11-19 19:26:53 +00:00 committed by Roger Sayle
parent 3b16115392
commit a500466ba1
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2002-11-19 Roger Sayle <roger@eyesopen.com>
* gcse.c (gcse_emit_move_after): Correct typo in REG_EQUAL note.
2002-11-19 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.md (an anonymous pattern): Relax the

View file

@ -5294,7 +5294,7 @@ gcse_emit_move_after (src, dest, insn)
else
eqv = SET_SRC (set);
set_unique_reg_note (new, REG_EQUAL, copy_insn_1 (src));
set_unique_reg_note (new, REG_EQUAL, copy_insn_1 (eqv));
return new;
}