diff options
author | Richard Henderson <rth@redhat.com> | 2004-12-22 22:18:22 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-12-22 22:18:22 -0800 |
commit | 513618db0af335cf2276a203dfc1c45160cfc582 (patch) | |
tree | e154030acae6aa20aa182c3acc946c99370941de /gcc/config | |
parent | 2ca396208cb35a3acb8d04424b40b9a23d65fcd1 (diff) | |
download | gcc-513618db0af335cf2276a203dfc1c45160cfc582.zip gcc-513618db0af335cf2276a203dfc1c45160cfc582.tar.gz gcc-513618db0af335cf2276a203dfc1c45160cfc582.tar.bz2 |
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
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/predicates.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/predicates.md b/gcc/config/i386/predicates.md index 3340a2a..5127162 100644 --- a/gcc/config/i386/predicates.md +++ b/gcc/config/i386/predicates.md @@ -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, |