]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
fr30.md (cbranchsi4): Remove mode from comparison.
authorNick Clifton <nickc@redhat.com>
Fri, 17 Aug 2012 10:27:10 +0000 (10:27 +0000)
committerNick Clifton <nickc@gcc.gnu.org>
Fri, 17 Aug 2012 10:27:10 +0000 (10:27 +0000)
* config/fr30/fr30.md  (cbranchsi4): Remove mode from
comparison.
(branch_true): Likewise.
(branch_false): Likewise.

From-SVN: r190478

gcc/ChangeLog
gcc/config/fr30/fr30.md

index 6c177795898ce0084a4c0ee38ad9da2fb86e9a19..ca2b319236a2d6d6d520769179bea77e6e3c6fc8 100644 (file)
 
 2012-08-17  Nick Clifton  <nickc@redhat.com>
 
+       * config/fr30/fr30.md  (cbranchsi4): Remove mode from
+       comparison.
+       (branch_true): Likewise.
+       (branch_false): Likewise.
+
        * config/mcore/mcore.md (cbranchsi4): Remove mode from
        comparison.
 
index 6b35599837f1813f01fb873b9b3aa10ce16a66a0..633827106884defdd78b916ef3d01347a24b9ec4 100644 (file)
        (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)))]
 
 (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)))]
   ""
 ;; 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 "" ""))))]
   ""