sh.md (adddi3_compact, [...]): Add earlyclobber constraint modifier for operand 0.
authorJ"orn Rennecke <joern.rennecke@superh.com>
Thu, 12 Jun 2003 12:03:25 +0000 (12:03 +0000)
committerJoern Rennecke <amylaar@gcc.gnu.org>
Thu, 12 Jun 2003 12:03:25 +0000 (13:03 +0100)
* sh.md (adddi3_compact, subdi3_compact): Add earlyclobber
constraint modifier for operand 0.

From-SVN: r67827

gcc/ChangeLog
gcc/config/sh/sh.md

index cebc09aae12a841d3e1eb8e515628d325156e158..b738ffb6eece564bd23a5341522bced8c93e00cb 100644 (file)
@@ -1,3 +1,8 @@
+2003-06-12  J"orn Rennecke <joern.rennecke@superh.com>
+
+       * sh.md (adddi3_compact, subdi3_compact): Add earlyclobber
+       constraint modifier for operand 0.
+
 2003-06-12  Hans-Peter Nilsson  <hp@axis.com>
 
        Don't warn on dollars in builtin macro definitions,
index 26ec41259b862bc1fbf75af59f778f9f48a27172..f662dc6efb4b44610da485518ebe94d63fbfb3dd 100644 (file)
   [(set_attr "type" "arith_media")])
 
 (define_insn "adddi3_compact"
-  [(set (match_operand:DI 0 "arith_reg_operand" "=r")
+  [(set (match_operand:DI 0 "arith_reg_operand" "=&r")
        (plus:DI (match_operand:DI 1 "arith_reg_operand" "%0")
                 (match_operand:DI 2 "arith_reg_operand" "r")))
    (clobber (reg:SI T_REG))]
   [(set_attr "type" "arith_media")])
 
 (define_insn "subdi3_compact"
-  [(set (match_operand:DI 0 "arith_reg_operand" "=r")
+  [(set (match_operand:DI 0 "arith_reg_operand" "=&r")
        (minus:DI (match_operand:DI 1 "arith_reg_operand" "0")
                 (match_operand:DI 2 "arith_reg_operand" "r")))
    (clobber (reg:SI T_REG))]