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]

Bug in mips.md - with patch



Compiling the current CVS version on MIPS/Linux I got:

./genattr ../../gcc-2.96/gcc/config/mips/mips.md > tmp-attr.h
../../gcc-2.96/gcc/config/mips/mips.md:9273: expected character `)', found `('
../../gcc-2.96/gcc/config/mips/mips.md:9273: following context is `label_ref (match_operand 1 "" "")))))'

There's a brace missing, I'm appending a patch.

Andreas

1999-11-25  Andreas Jaeger  <aj@suse.de>

	* config/mips/mips.md (casesi_internal): Add missing brace.

============================================================
Index: config/mips/mips.md
--- config/mips/mips.md	1999/11/25 04:44:27	1.73
+++ config/mips/mips.md	1999/11/25 10:03:12
@@ -9269,7 +9269,7 @@
   [(set (pc)
 	(mem:DI (plus:DI (sign_extend:DI 
 			  (mult:SI (match_operand:SI 0 "register_operand" "d")
-				  (const_int 4))
+				  (const_int 4)))
 			 (label_ref (match_operand 1 "" "")))))
    (clobber (match_operand:DI 2 "register_operand" "=d"))
    (clobber (reg:DI 31))]

-- 
 Andreas Jaeger
  SuSE Labs aj@suse.de
   private aj@arthur.rhein-neckar.de


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