]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
h8300.md (pushqi1_h8300hs): Rename to pushqi1_h8300hs_advanced.
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 2 Mar 2004 05:56:27 +0000 (05:56 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 2 Mar 2004 05:56:27 +0000 (05:56 +0000)
* config/h8300/h8300.md (pushqi1_h8300hs): Rename to
pushqi1_h8300hs_advanced.  Adjust its caller.
(pushhi1_h8300hs): Rename to pushhi1_h8300hs_advanced.
Adjust its caller.

From-SVN: r78749

gcc/ChangeLog
gcc/config/h8300/h8300.md

index dcfe459fb91e26099df686a57a149d12a9385ad6..dfd778ca3ad1e38ab3b26beaf88ab6caa48a39f7 100644 (file)
@@ -1,3 +1,10 @@
+2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/h8300/h8300.md (pushqi1_h8300hs): Rename to
+       pushqi1_h8300hs_advanced.  Adjust its caller.
+       (pushhi1_h8300hs): Rename to pushhi1_h8300hs_advanced.
+       Adjust its caller.
+
 2004-03-02  Roche Nicolas <roche@act-europe.fr>
 
        * Makefile.in (install-libgcc, install-multilib): Pass
index 18995e7610b21c6231acc1a1b9c38300fd034a87..45295af439142959cc73bd0c2372a676d933b068 100644 (file)
   "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)))
   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;
    && 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)))
   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;