diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-14 23:10:50 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-14 23:10:50 +0000 |
commit | 941522d6c3e2c621f0687479d39e7dfc888c23bc (patch) | |
tree | 5b5f754e444d69a16ff8c719a5776021720484fb /gcc/local-alloc.c | |
parent | 249e259654efc9c5f8b07f1c2ff289598cb287c5 (diff) | |
download | gcc-941522d6c3e2c621f0687479d39e7dfc888c23bc.tar.gz |
* alias.c: Change all uses of gen_rtx(FOO...) to gen_rtx_FOO;
change gen_rtx(expr...) to gen_rtx_fmt_foo(expr...).
* caller-save.c, calls.c, combine.c, cse.c: Likewise.
* dwarf2out.c, except.c, explow.c, expmed.c, expr.c: Likewise.
* final.c, flow.c, function.c, genpeep.c, haifa-sched.c: Likewise.
* halfpic.c, integrate.c, jump.c, local-alloc.c, loop.c: Likewise.
* profile.c, recog.c, reg-stack.c, regclass.c, regmove.c: Likewise.
* reload.c, reload1.c, reorg.c, sched.c, stmt.c, stupid.c: Likewise.
* unroll.c, varasm.c: Likewise.
* config/alpha/alpha.c, config/alpha/alpha.md: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17357 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/local-alloc.c')
-rw-r--r-- | gcc/local-alloc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/local-alloc.c b/gcc/local-alloc.c index 7f149d9f752..62f3e171895 100644 --- a/gcc/local-alloc.c +++ b/gcc/local-alloc.c @@ -1082,8 +1082,8 @@ update_equiv_regs () && ! memref_used_between_p (SET_DEST (set), reg_equiv_init_insn[regno], insn)) REG_NOTES (reg_equiv_init_insn[regno]) - = gen_rtx (EXPR_LIST, REG_EQUIV, dest, - REG_NOTES (reg_equiv_init_insn[regno])); + = gen_rtx_EXPR_LIST (REG_EQUIV, dest, + REG_NOTES (reg_equiv_init_insn[regno])); /* If this is a register-register copy where SRC is not dead, see if we can optimize it. */ @@ -1158,8 +1158,8 @@ update_equiv_regs () if (note == 0 && REG_BASIC_BLOCK (regno) >= 0 && GET_CODE (SET_SRC (set)) == MEM && validate_equiv_mem (insn, dest, SET_SRC (set))) - REG_NOTES (insn) = note = gen_rtx (EXPR_LIST, REG_EQUIV, SET_SRC (set), - REG_NOTES (insn)); + REG_NOTES (insn) = note = gen_rtx_EXPR_LIST (REG_EQUIV, SET_SRC (set), + REG_NOTES (insn)); if (note) { @@ -1721,8 +1721,8 @@ block_alloc (b) { if (GET_CODE (qty_scratch_rtx[q]) == REG) abort (); - qty_scratch_rtx[q] = gen_rtx (REG, GET_MODE (qty_scratch_rtx[q]), - qty_phys_reg[q]); + qty_scratch_rtx[q] = gen_rtx_REG (GET_MODE (qty_scratch_rtx[q]), + qty_phys_reg[q]); scratch_block[scratch_index] = b; scratch_list[scratch_index++] = qty_scratch_rtx[q]; |