diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2003-03-08 17:29:31 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2003-03-08 17:29:31 +0000 |
commit | 73ba39fc86a4697b0c25fcf7cb52a577a356fb0a (patch) | |
tree | 1a38be0e5c63817d8d74ddd21d34e6d6db575422 /gcc | |
parent | 3b68401238b4a5107837b781c5fc375ab378fcf6 (diff) | |
download | gcc-73ba39fc86a4697b0c25fcf7cb52a577a356fb0a.zip gcc-73ba39fc86a4697b0c25fcf7cb52a577a356fb0a.tar.gz gcc-73ba39fc86a4697b0c25fcf7cb52a577a356fb0a.tar.bz2 |
* config/mmix/mmix.md ("*movcc_expanded"): Add missing alternatives.
From-SVN: r63997
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/mmix/mmix.md | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 31eb46d..1538848 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-03-08 Hans-Peter Nilsson <hp@bitrange.com> + + * config/mmix/mmix.md ("*movcc_expanded"): Add missing alternatives. + 2003-03-08 Richard Earnshaw <rearnsha@arm.com> * arm.c (fpa_rhs_operand, fpa_add_operand, const_double_rtx_ok_for_fpa) diff --git a/gcc/config/mmix/mmix.md b/gcc/config/mmix/mmix.md index e3623bd..8878c3f 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") |