diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-02 05:56:27 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-02 05:56:27 +0000 |
commit | 49d205096bdcffdcd807f3c27bee15451b659ff5 (patch) | |
tree | 0a690c5842af220c998442208d6fba7b84accf83 /gcc/config/h8300/h8300.md | |
parent | 00a66eda1e15bc58909f6783f4b6190ff43ab1c0 (diff) | |
download | gcc-49d205096bdcffdcd807f3c27bee15451b659ff5.tar.gz |
* config/h8300/h8300.md (pushqi1_h8300hs): Rename to
pushqi1_h8300hs_advanced. Adjust its caller.
(pushhi1_h8300hs): Rename to pushhi1_h8300hs_advanced.
Adjust its caller.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@78749 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/h8300/h8300.md')
-rw-r--r-- | gcc/config/h8300/h8300.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/h8300/h8300.md b/gcc/config/h8300/h8300.md index 18995e7610b..45295af4391 100644 --- a/gcc/config/h8300/h8300.md +++ b/gcc/config/h8300/h8300.md @@ -532,7 +532,7 @@ "mov.w\\t%T0,@-r7" [(set_attr "length" "2")]) -(define_insn "pushqi1_h8300hs" +(define_insn "pushqi1_h8300hs_advanced" [(set (reg:SI SP_REG) (plus:SI (reg:SI SP_REG) (const_int -4))) (set (mem:QI (plus:SI (reg:SI SP_REG) (const_int -3))) @@ -560,7 +560,7 @@ if (TARGET_H8300) emit_insn (gen_pushqi1_h8300 (operands[0])); else if (!TARGET_NORMAL_MODE) - emit_insn (gen_pushqi1_h8300hs (operands[0])); + emit_insn (gen_pushqi1_h8300hs_advanced (operands[0])); else emit_insn (gen_pushqi1_h8300hs_normal (operands[0])); DONE; @@ -573,7 +573,7 @@ && operands[0] != stack_pointer_rtx" "") -(define_insn "pushhi1_h8300hs" +(define_insn "pushhi1_h8300hs_advanced" [(set (reg:SI SP_REG) (plus:SI (reg:SI SP_REG) (const_int -4))) (set (mem:HI (plus:SI (reg:SI SP_REG) (const_int -2))) @@ -601,7 +601,7 @@ if (TARGET_H8300) emit_insn (gen_pushhi1_h8300 (operands[0])); else if (!TARGET_NORMAL_MODE) - emit_insn (gen_pushhi1_h8300hs (operands[0])); + emit_insn (gen_pushhi1_h8300hs_advanced (operands[0])); else emit_insn (gen_pushhi1_h8300hs_normal (operands[0])); DONE; |