diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-01 01:15:07 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-01 01:15:07 +0000 |
commit | 8e9999972819d29e88aa4213572ac734c04ffd5f (patch) | |
tree | 5598774dfea689770b311deffdc2ccd8112d6016 /gcc/config/vax/vax.md | |
parent | 32c01b3f2f45fff4c910b69f36c904ce1c7b57d3 (diff) | |
download | gcc-8e9999972819d29e88aa4213572ac734c04ffd5f.tar.gz |
* combine.c (distribute_notes): Don't bother REG_WAS_0.
* cse.c (cse_insn): Likewise.
* final.c (final_scan_insn): Likewise.
* jump.c (duplicate_loop_exit_test): Likewise.
* rtl.c (reg_note_name): Remove REG_WAS_0.
* rtl.h (REG_WAS_0): Remove.
* unroll.c (final_reg_note_copy): Don't bother REG_WAS_0.
* config/avr/avr.c (output_movqi): Don't use reg_was_0.
(output_movhi): Likewise.
(output_movsisf): Likewise.
(reg_was_0): Remove.
* config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Don't use
REG_WAS_0.
(m68hc11_gen_movqi): Likewise.
* config/vax/vax-protos.h: Remove the prototype for
reg_was_0_p.
* config/vax/vax.c (follows_p): Remove.
(reg_was_0_p): Likewise.
* config/vax/vax.md (movsi): Don't use reg_was_0_p.
(movhi): Likewise.
(movqi): Likewise.
* doc/rtl.texi (REG_WAS_0): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68753 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/vax/vax.md')
-rw-r--r-- | gcc/config/vax/vax.md | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/gcc/config/vax/vax.md b/gcc/config/vax/vax.md index d0dc9556021..7027604ed9e 100644 --- a/gcc/config/vax/vax.md +++ b/gcc/config/vax/vax.md @@ -193,9 +193,6 @@ "" "* { - if (operands[1] == const1_rtx && reg_was_0_p (insn, operands[0])) - return \"incl %0\"; - if (GET_CODE (operands[1]) == SYMBOL_REF || GET_CODE (operands[1]) == CONST) { if (push_operand (operands[0], SImode)) @@ -230,9 +227,6 @@ "" "* { - if (operands[1] == const1_rtx && reg_was_0_p (insn, operands[0])) - return \"incw %0\"; - if (GET_CODE (operands[1]) == CONST_INT) { int i = INTVAL (operands[1]); @@ -275,9 +269,6 @@ "" "* { - if (operands[1] == const1_rtx && reg_was_0_p (insn, operands[0])) - return \"incb %0\"; - if (GET_CODE (operands[1]) == CONST_INT) { int i = INTVAL (operands[1]); |