diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-08 17:29:31 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-08 17:29:31 +0000 |
commit | 4d8f32b1b743452a9dd89c5ed27b90b8c0ecc55b (patch) | |
tree | 1a38be0e5c63817d8d74ddd21d34e6d6db575422 /gcc/config/mmix | |
parent | e8ff69a48eb81a27a4859021e629d78eb7df8eb5 (diff) | |
download | gcc-4d8f32b1b743452a9dd89c5ed27b90b8c0ecc55b.tar.gz |
* config/mmix/mmix.md ("*movcc_expanded"): Add missing alternatives.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63997 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mmix')
-rw-r--r-- | gcc/config/mmix/mmix.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/config/mmix/mmix.md b/gcc/config/mmix/mmix.md index e3623bdaed0..8878c3f692c 100644 --- a/gcc/config/mmix/mmix.md +++ b/gcc/config/mmix/mmix.md @@ -139,12 +139,14 @@ ;; we treat them as signed entities; see mmix-modes.def. The following ;; expanders should cover all MODE_CC modes, and expand for this pattern. (define_insn "*movcc_expanded" - [(set (match_operand 0 "nonimmediate_operand" "=r,r,m") - (match_operand 1 "nonimmediate_operand" "r,m,r"))] + [(set (match_operand 0 "nonimmediate_operand" "=r,x,r,r,m") + (match_operand 1 "nonimmediate_operand" "r,r,x,m,r"))] "GET_MODE_CLASS (GET_MODE (operands[0])) == MODE_CC && GET_MODE_CLASS (GET_MODE (operands[1])) == MODE_CC" "@ SET %0,%1 + PUT %0,%1 + GET %0,%1 LDT %0,%1 STT %1,%0") |