*** empty log message ***

From-SVN: r803
This commit is contained in:
Michael Meissner 1992-04-20 14:05:28 +00:00
parent f5f178e0f6
commit 7025258008

View File

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