h8300.md (tablejump_h8300): Change to *tablejump_h8300.
authorKazu Hirata <kazu@cs.umass.edu>
Mon, 24 Nov 2003 17:34:16 +0000 (17:34 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Mon, 24 Nov 2003 17:34:16 +0000 (17:34 +0000)
* config/h8300/h8300.md (tablejump_h8300): Change to
*tablejump_h8300.
(tablejump_h8300h): Change to *tablejump_h8300hs_advanced.
(tablejump_normal_mode): Change to *tablejump_h8300hs_normal.
(indirect_jump_h8300): Change to *indirect_jump_h8300.
(indirect_jump_h8300h): Change to
*indirect_jump_h8300hs_advanced.
(indirect_jump_normal_mode): Change to
*indirect_jump_h8300hs_normal.

From-SVN: r73883

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

index a24e6fb919e540a22a5f1a274165982ed1e89314..98052d1cf65fff58124eaee998e9a8a077293741 100644 (file)
@@ -1,3 +1,15 @@
+2003-11-24  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * config/h8300/h8300.md (tablejump_h8300): Change to
+       *tablejump_h8300.
+       (tablejump_h8300h): Change to *tablejump_h8300hs_advanced.
+       (tablejump_normal_mode): Change to *tablejump_h8300hs_normal.
+       (indirect_jump_h8300): Change to *indirect_jump_h8300.
+       (indirect_jump_h8300h): Change to
+       *indirect_jump_h8300hs_advanced.
+       (indirect_jump_normal_mode): Change to
+       *indirect_jump_h8300hs_normal.
+
 2003-11-24  Kazu Hirata  <kazu@cs.umass.edu>
 
        * config/h8300/h8300.md: Remove constraints from expanders.
index 069573caab61e779fdd5b73ac13a57a335a17c11..3dad9d3ba8d6d30b2f90cf6a2c81676b7f6516a4 100644 (file)
   ""
   "")
 
-(define_insn "tablejump_h8300"
+(define_insn "*tablejump_h8300"
   [(set (pc) (match_operand:HI 0 "register_operand" "r"))
    (use (label_ref (match_operand 1 "" "")))]
   "TARGET_H8300"
   [(set_attr "cc" "none")
    (set_attr "length" "2")])
 
-(define_insn "tablejump_h8300h"
+(define_insn "*tablejump_h8300hs_advanced"
   [(set (pc) (match_operand:SI 0 "register_operand" "r"))
    (use (label_ref (match_operand 1 "" "")))]
   "TARGET_H8300H || TARGET_H8300S"
   [(set_attr "cc" "none")
    (set_attr "length" "2")])
 
-(define_insn "tablejump_normal_mode"
+(define_insn "*tablejump_h8300hs_normal"
    [(set (pc) (match_operand:HI 0 "register_operand" "r"))
     (use (label_ref (match_operand 1 "" "")))]
    "(TARGET_H8300H || TARGET_H8300S) && TARGET_NORMAL_MODE"
   ""
   "")
 
-(define_insn "indirect_jump_h8300"
+(define_insn "*indirect_jump_h8300"
   [(set (pc) (match_operand:HI 0 "jump_address_operand" "Vr"))]
   "TARGET_H8300"
   "jmp @%0"
   [(set_attr "cc" "none")
    (set_attr "length" "2")])
 
-(define_insn "indirect_jump_h8300h"
+(define_insn "*indirect_jump_h8300hs_advanced"
   [(set (pc) (match_operand:SI 0 "jump_address_operand" "Vr"))]
   "TARGET_H8300H || TARGET_H8300S"
   "jmp @%0"
   [(set_attr "cc" "none")
    (set_attr "length" "2")])
 
-(define_insn "indirect_jump_normal_mode"
+(define_insn "*indirect_jump_h8300hs_normal"
   [(set (pc) (match_operand:HI 0 "jump_address_operand" "Vr"))]
   "(TARGET_H8300H || TARGET_H8300S) && TARGET_NORMAL_MODE"
   "jmp @%S0"