diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-01 09:51:30 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-01-01 09:51:30 +0000 |
commit | 9cef77f477116bf2cfaaf1e8227dcb7d04d66485 (patch) | |
tree | a322466ba44151e565809d82b0bd29d22059860d /gcc/config/mn10200 | |
parent | 2aa3e87b14890249bf0b99de2795a2771981f0cb (diff) | |
download | gcc-9cef77f477116bf2cfaaf1e8227dcb7d04d66485.tar.gz |
* mn10200.md (tstxx, cmpxx): Use "nonimmediate_operand" as predicate
for first argument.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17274 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mn10200')
-rw-r--r-- | gcc/config/mn10200/mn10200.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/mn10200/mn10200.md b/gcc/config/mn10200/mn10200.md index a47332a1375..90f7f808753 100644 --- a/gcc/config/mn10200/mn10200.md +++ b/gcc/config/mn10200/mn10200.md @@ -1,5 +1,5 @@ ;; GCC machine description for Matsushita MN10200 -;; Copyright (C) 1997 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998 Free Software Foundation, Inc. ;; Contributed by Jeff Law (law@cygnus.com). @@ -306,13 +306,13 @@ ;; Go ahead and define tsthi and tstpsi so we can eliminate redundant tst insns ;; when we start trying to optimize this port. (define_insn "tsthi" - [(set (cc0) (match_operand:HI 0 "general_operand" "da"))] + [(set (cc0) (match_operand:HI 0 "nonimmediate_operand" "da"))] "" "* return output_tst (operands[0], insn);" [(set_attr "cc" "set_znv")]) (define_insn "tstpsi" - [(set (cc0) (match_operand:PSI 0 "general_operand" "da"))] + [(set (cc0) (match_operand:PSI 0 "nonimmediate_operand" "da"))] "" "* return output_tst (operands[0], insn);" [(set_attr "cc" "set_znv")]) @@ -331,7 +331,7 @@ (define_insn "cmphi" [(set (cc0) - (compare:HI (match_operand:HI 0 "general_operand" "da") + (compare:HI (match_operand:HI 0 "nonimmediate_operand" "da") (match_operand:HI 1 "general_operand" "dai")))] "" "cmp %1,%0" @@ -339,7 +339,7 @@ (define_insn "cmppsi" [(set (cc0) - (compare:PSI (match_operand:PSI 0 "general_operand" "da") + (compare:PSI (match_operand:PSI 0 "nonimmediate_operand" "da") (match_operand:PSI 1 "general_operand" "dai")))] "" "cmp %1,%0" |