diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-30 12:41:45 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-30 12:41:45 +0000 |
commit | c080d8f03b137c42b863555fe98a53cbf79b0c98 (patch) | |
tree | bf284af1d2de346c28438607b4461f75a47c178a /gcc/local-alloc.c | |
parent | 1a5a5cd8e1186b23c202356655578e6f328aa361 (diff) | |
download | gcc-c080d8f03b137c42b863555fe98a53cbf79b0c98.tar.gz |
* emit-rtl.c (set_unique_reg_note): Don't create REG_EQUAL or
REG_EQUIV notes for ASM_OPERANDS. Return the new note (if any).
* rtl.h (set_unique_reg_note): Change return value.
* gcse.c (try_replace_reg): Use set_unique_reg_note.
* cse.c (cse_insn): Likewise.
* expr.c (emit_move_insn): Likewise.
* explow.c (force_reg): Likewise.
* local-alloc (update_equiv_regs): Likewise.
* loop.c (move_moveables, load_mems): Likewise.
* reload (find_reloads): Likewise.
* gcc.dg/20011029-2.c: New test.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46636 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 9945b45d14b..7cee3f5e456 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -927,13 +927,9 @@ update_equiv_regs () /* cse sometimes generates function invariants, but doesn't put a REG_EQUAL note on the insn. Since this note would be redundant, - there's no point creating it earlier than here. Don't do this - for ASM_OPERANDS since eliminate_regs doesn't support it and - it serves no useful purpose. */ - if (! note && ! rtx_varies_p (src, 0) - && GET_CODE (src) != ASM_OPERANDS) - REG_NOTES (insn) - = note = gen_rtx_EXPR_LIST (REG_EQUAL, src, REG_NOTES (insn)); + there's no point creating it earlier than here. */ + if (! note && ! rtx_varies_p (src, 0)) + note = set_unique_reg_note (insn, REG_EQUAL, src); /* Don't bother considering a REG_EQUAL note containing an EXPR_LIST since it represents a function call */ |