diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-05-03 16:36:34 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-05-03 16:36:34 -0700 |
commit | bc1aa946790c9534f2fee6db6bf84e93d6151c89 (patch) | |
tree | 360d53d6d79c1da2000fa586f036965d61e3abd4 | |
parent | f87550e01ba02eb63e3b691d422aed6a698ddf1c (diff) | |
download | gcc-bc1aa946790c9534f2fee6db6bf84e93d6151c89.zip gcc-bc1aa946790c9534f2fee6db6bf84e93d6151c89.tar.gz gcc-bc1aa946790c9534f2fee6db6bf84e93d6151c89.tar.bz2 |
(scc pattterns): Add missing mode to conditional operators.
From-SVN: r4312
-rw-r--r-- | gcc/config/i960/i960.md | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/config/i960/i960.md b/gcc/config/i960/i960.md index 14b05de..191cee9 100644 --- a/gcc/config/i960/i960.md +++ b/gcc/config/i960/i960.md @@ -261,7 +261,7 @@ (define_expand "seq" [(set (match_operand:SI 0 "general_operand" "=d") - (eq (match_dup 1) (const_int 0)))] + (eq:SI (match_dup 1) (const_int 0)))] "" " { @@ -270,7 +270,7 @@ (define_expand "sne" [(set (match_operand:SI 0 "general_operand" "=d") - (ne (match_dup 1) (const_int 0)))] + (ne:SI (match_dup 1) (const_int 0)))] "" " { @@ -279,7 +279,7 @@ (define_expand "sgt" [(set (match_operand:SI 0 "general_operand" "=d") - (gt (match_dup 1) (const_int 0)))] + (gt:SI (match_dup 1) (const_int 0)))] "" " { @@ -288,7 +288,7 @@ (define_expand "sgtu" [(set (match_operand:SI 0 "general_operand" "=d") - (gtu (match_dup 1) (const_int 0)))] + (gtu:SI (match_dup 1) (const_int 0)))] "" " { @@ -297,7 +297,7 @@ (define_expand "slt" [(set (match_operand:SI 0 "general_operand" "=d") - (lt (match_dup 1) (const_int 0)))] + (lt:SI (match_dup 1) (const_int 0)))] "" " { @@ -306,7 +306,7 @@ (define_expand "sltu" [(set (match_operand:SI 0 "general_operand" "=d") - (ltu (match_dup 1) (const_int 0)))] + (ltu:SI (match_dup 1) (const_int 0)))] "" " { @@ -315,7 +315,7 @@ (define_expand "sge" [(set (match_operand:SI 0 "general_operand" "=d") - (ge (match_dup 1) (const_int 0)))] + (ge:SI (match_dup 1) (const_int 0)))] "" " { @@ -324,7 +324,7 @@ (define_expand "sgeu" [(set (match_operand:SI 0 "general_operand" "=d") - (geu (match_dup 1) (const_int 0)))] + (geu:SI (match_dup 1) (const_int 0)))] "" " { @@ -333,7 +333,7 @@ (define_expand "sle" [(set (match_operand:SI 0 "general_operand" "=d") - (le (match_dup 1) (const_int 0)))] + (le:SI (match_dup 1) (const_int 0)))] "" " { @@ -342,7 +342,7 @@ (define_expand "sleu" [(set (match_operand:SI 0 "general_operand" "=d") - (leu (match_dup 1) (const_int 0)))] + (leu:SI (match_dup 1) (const_int 0)))] "" " { @@ -351,14 +351,14 @@ (define_insn "" [(set (match_operand:SI 0 "general_operand" "=d") - (match_operator 1 "comparison_operator" [(reg:CC 36) (const_int 0)]))] + (match_operator:SI 1 "comparison_operator" [(reg:CC 36) (const_int 0)]))] "" "test%C1 %0" [(set_attr "type" "compare")]) (define_insn "" [(set (match_operand:SI 0 "general_operand" "=d") - (match_operator 1 "comparison_operator" [(reg:CC_UNS 36) (const_int 0)]))] + (match_operator:SI 1 "comparison_operator" [(reg:CC_UNS 36) (const_int 0)]))] "" "test%C1 %0" [(set_attr "type" "compare")]) |