diff options
| author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-22 09:18:19 +0000 |
|---|---|---|
| committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-10-22 09:18:19 +0000 |
| commit | 3cd64af9c7d2eb289d2eb55fef99a58554d5399c (patch) | |
| tree | df4625edba64f532180cad3c7359e2770bffe555 | |
| parent | 2744bd741f9ab5a02b7cf478b2ed1e326b4ec25e (diff) | |
| download | ppe42-gcc-3cd64af9c7d2eb289d2eb55fef99a58554d5399c.tar.gz ppe42-gcc-3cd64af9c7d2eb289d2eb55fef99a58554d5399c.zip | |
Fix precedence of conditional terms
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46408 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/config/mips/mips.md | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 322a6fe9daa..171f78ff865 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2001-10-22 Nick Clifton <nickc@cambridge.redhat.com> + * config/mips/mips.md (mul_acc_si): Fix precedence of conditional + terms. + * c-format.c: Fix spelling typo in comment. * sched-int.h: Fix typo in GCC preamble. diff --git a/gcc/config/mips/mips.md b/gcc/config/mips/mips.md index 98ee650d22c..d22e1573872 100644 --- a/gcc/config/mips/mips.md +++ b/gcc/config/mips/mips.md @@ -1798,8 +1798,8 @@ (clobber (match_scratch:SI 5 "=X,3,l")) (clobber (match_scratch:SI 6 "=a,a,a")) (clobber (match_scratch:SI 7 "=X,X,d"))] - "TARGET_MIPS3900 - || ISA_HAS_MADD_MSUB + "(TARGET_MIPS3900 + || ISA_HAS_MADD_MSUB) && !TARGET_MIPS16" "* { |

