Commit 513618db by Richard Henderson Committed by Richard Henderson

predicates.md (sse_comparison_operator): Fix typo in ieee test.

        * config/i386/predicates.md (sse_comparison_operator): Fix
        typo in ieee test.
        (arith_or_logical_operator): Downcase codes.

From-SVN: r92532
parent 2ca39620
2004-12-22 Richard Henderson <rth@redhat.com>
* config/i386/predicates.md (sse_comparison_operator): Fix
typo in ieee test.
(arith_or_logical_operator): Downcase codes.
2004-12-23 Kaz Kojima <kkojima@gcc.gnu.org>
PR target/18511
......
......@@ -717,7 +717,7 @@
(define_special_predicate "sse_comparison_operator"
(ior (match_code "eq,lt,le,unordered,ne,unge,ungt,ordered")
(and (match_code "uneq,unlt,unle,ltgt,ge,gt")
(match_code "!TARGET_IEEE_FP"))))
(match_test "!TARGET_IEEE_FP"))))
;; Return 1 if OP is a valid comparison operator in valid mode.
(define_predicate "ix86_comparison_operator"
......@@ -805,8 +805,8 @@
;; Return true for ARITHMETIC_P.
(define_predicate "arith_or_logical_operator"
(match_code "PLUS,MULT,AND,IOR,XOR,SMIN,SMAX,UMIN,UMAX,COMPARE,MINUS,DIV,
MOD,UDIV,UMOD,ASHIFT,ROTATE,ASHIFTRT,LSHIFTRT,ROTATERT"))
(match_code "plus,mult,and,ior,xor,smin,smax,umin,umax,compare,minus,div,
mod,udiv,umod,ashift,rotate,ashiftrt,lshiftrt,rotatert"))
;; Return 1 if OP is a binary operator that can be promoted to wider mode.
;; Modern CPUs have same latency for HImode and SImode multiply,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment