]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
*** empty log message ***
authorMichael Meissner <meissner@gcc.gnu.org>
Mon, 20 Apr 1992 14:05:28 +0000 (14:05 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Mon, 20 Apr 1992 14:05:28 +0000 (14:05 +0000)
From-SVN: r803

gcc/config/mips/mips.md

index 1435e388f48f5a808db7713cec2ccfdabb743a30..2a188ceb9d6438e071ff7cba851b0c8e5754f15b 100644 (file)
 ;; 65 is the multiply/divide lo register
 
 (define_insn "divmodsi4"
-  [(parallel [(set (match_operand:SI 0 "register_operand" "=d")
-                  (div:SI (match_operand:SI 1 "register_operand" "d")
-                          (match_operand:SI 2 "register_operand" "d")))
-             (set (match_operand:SI 3 "register_operand" "=d")
-                  (mod:SI (match_dup 1)
-                          (match_dup 2)))
-             (clobber (reg:SI 64))
-             (clobber (reg:SI 65))])]
+  [(set (match_operand:SI 0 "register_operand" "=d")
+       (div:SI (match_operand:SI 1 "register_operand" "d")
+               (match_operand:SI 2 "register_operand" "d")))
+   (set (match_operand:SI 3 "register_operand" "=d")
+       (mod:SI (match_dup 1)
+               (match_dup 2)))
+   (clobber (reg:SI 64))
+   (clobber (reg:SI 65))]
   "optimize && !TARGET_DEBUG_C_MODE"
   "*
 {
    (set_attr "length"  "13")])         ;; various tests for dividing by 0 and such
 
 (define_insn "udivmodsi4"
-  [(parallel [(set (match_operand:SI 0 "register_operand" "=d")
-                  (udiv:SI (match_operand:SI 1 "register_operand" "d")
-                           (match_operand:SI 2 "register_operand" "d")))
-             (set (match_operand:SI 3 "register_operand" "=d")
-                  (umod:SI (match_dup 1)
-                           (match_dup 2)))
-             (clobber (reg:SI 64))
-             (clobber (reg:SI 65))])]
+  [(set (match_operand:SI 0 "register_operand" "=d")
+       (udiv:SI (match_operand:SI 1 "register_operand" "d")
+                (match_operand:SI 2 "register_operand" "d")))
+   (set (match_operand:SI 3 "register_operand" "=d")
+       (umod:SI (match_dup 1)
+                (match_dup 2)))
+   (clobber (reg:SI 64))
+   (clobber (reg:SI 65))]
   "optimize && !TARGET_DEBUG_C_MODE"
   "*
 {