summaryrefslogtreecommitdiffstats
path: root/gcc/config/i960/i960.md
diff options
context:
space:
mode:
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1993-05-03 23:36:34 +0000
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>1993-05-03 23:36:34 +0000
commit9576905b85b8d1373f7495f0fdd6934ea3b850fb (patch)
tree360d53d6d79c1da2000fa586f036965d61e3abd4 /gcc/config/i960/i960.md
parentfe0a02554675e9662b91b26d2cd00f632ebf50fd (diff)
downloadppe42-gcc-9576905b85b8d1373f7495f0fdd6934ea3b850fb.tar.gz
ppe42-gcc-9576905b85b8d1373f7495f0fdd6934ea3b850fb.zip
(scc pattterns): Add missing mode to conditional operators.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4312 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i960/i960.md')
-rw-r--r--gcc/config/i960/i960.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/gcc/config/i960/i960.md b/gcc/config/i960/i960.md
index 14b05de861e..191cee99032 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")])
OpenPOWER on IntegriCloud