diff options
Diffstat (limited to 'gcc/config/m88k/m88k.md')
-rw-r--r-- | gcc/config/m88k/m88k.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/m88k/m88k.md b/gcc/config/m88k/m88k.md index 54ec6486773..c94e6fd82ae 100644 --- a/gcc/config/m88k/m88k.md +++ b/gcc/config/m88k/m88k.md @@ -2810,7 +2810,7 @@ ;; Division by 0 trap (define_insn "trap_divide_by_zero" - [(trap_if (const_int 1) 503)] + [(trap_if (const_int 1) (const_int 503))] "" "tb0 0,%#r0,503" [(set_attr "type" "weird")]) @@ -2822,7 +2822,7 @@ (const_int 0)) (pc) (match_operand 1 "" ""))) - (trap_if (const_int 1) 503)] + (trap_if (const_int 1) (const_int 503))] "" " { @@ -3451,14 +3451,14 @@ (define_insn "tbnd" [(trap_if (gtu (match_operand:SI 0 "register_operand" "r") (match_operand:SI 1 "arith_operand" "rI")) - 7)] + (const_int 7))] "" "tbnd %r0,%1" [(set_attr "type" "weird")]) ;; Just in case the optimizer decides to fold away the test. (define_insn "" - [(trap_if (const_int 1) 7)] + [(trap_if (const_int 1) (const_int 7))] "" "tbnd %#r31,0" [(set_attr "type" "weird")]) |