From bc1aa946790c9534f2fee6db6bf84e93d6151c89 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 3 May 1993 16:36:34 -0700 Subject: (scc pattterns): Add missing mode to conditional operators. From-SVN: r4312 --- gcc/config/i960/i960.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'gcc') 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")]) -- cgit v1.1