This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Fix compile time warning in mips.md


Hi Guys,

  Here is a patch to mips.md to fix a compile time warning message
  about the precedence of conditional terms, and also, incidentally,
  make it slightly easier to add new mips variants.  Applied as
  obvious.

Cheers
        Nick

2001-10-22  Nick Clifton  <nickc@cambridge.redhat.com>

	* config/mips/mips.md (mul_acc_si): Fix precedence of conditional
	terms.

Index: mips.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/mips/mips.md,v
retrieving revision 1.108
diff -w -p -r1.108 mips.md
*** mips.md	2001/09/15 02:03:13	1.108
--- mips.md	2001/10/22 09:13:45
***************
*** 1798,1805 ****
     (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_MIPS16"
    "*
  {
--- 1798,1805 ----
     (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_MIPS16"
    "*
  {


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]