summaryrefslogtreecommitdiff
path: root/gcc/config/fr30/fr30.md
diff options
context:
space:
mode:
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2012-08-17 10:27:10 +0000
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2012-08-17 10:27:10 +0000
commit010e37ad8f1f2387801bb3298735aa06611d57bd (patch)
tree4fccc530c9a6bb40cd348fbe4a25293df9145589 /gcc/config/fr30/fr30.md
parent86df38a6c9e3c84c27b209f6279b297386845ae8 (diff)
downloadgcc-010e37ad8f1f2387801bb3298735aa06611d57bd.tar.gz
* config/fr30/fr30.md (cbranchsi4): Remove mode from
comparison. (branch_true): Likewise. (branch_false): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190478 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/fr30/fr30.md')
-rw-r--r--gcc/config/fr30/fr30.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/config/fr30/fr30.md b/gcc/config/fr30/fr30.md
index 6b35599837f..63382710688 100644
--- a/gcc/config/fr30/fr30.md
+++ b/gcc/config/fr30/fr30.md
@@ -940,7 +940,7 @@
(compare:CC (match_operand:SI 1 "register_operand" "")
(match_operand:SI 2 "nonmemory_operand" "")))
(set (pc)
- (if_then_else (match_operator:CC 0 "ordered_comparison_operator"
+ (if_then_else (match_operator 0 "ordered_comparison_operator"
[(reg:CC 16) (const_int 0)])
(label_ref (match_operand 3 "" ""))
(pc)))]
@@ -980,9 +980,9 @@
(define_insn "*branch_true"
[(set (pc)
- (if_then_else (match_operator:CC 0 "comparison_operator"
- [(reg:CC 16)
- (const_int 0)])
+ (if_then_else (match_operator 0 "comparison_operator"
+ [(reg:CC 16)
+ (const_int 0)])
(label_ref (match_operand 1 "" ""))
(pc)))]
""
@@ -1034,9 +1034,9 @@
;; branch occurs if the test is false, so the %B operator is used.
(define_insn "*branch_false"
[(set (pc)
- (if_then_else (match_operator:CC 0 "comparison_operator"
- [(reg:CC 16)
- (const_int 0)])
+ (if_then_else (match_operator 0 "comparison_operator"
+ [(reg:CC 16)
+ (const_int 0)])
(pc)
(label_ref (match_operand 1 "" ""))))]
""