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]
Other format: [Raw text]

Re: shrink insn-attrtab.o by 4kB


Zack Weinberg <zack@codesourcery.com> writes:

|> The previous patch made it through a bootstrap unscathed, but did
|> throw a couple of warnings.  I'm rebootstrapping with this patch now.
|> Assuming success, OK to apply?

This misses a close paren.  Installed as obvious.

Andreas.

2003-01-21  Andreas Schwab  <schwab@suse.de>

	* genautomata.c (output_internal_insn_latency_func): Fix missing
	close paren in output.

--- gcc/genautomata.c.~1.34.~	2003-01-21 10:20:09.000000000 +0100
+++ gcc/genautomata.c	2003-01-21 10:29:34.000000000 +0100
@@ -1,5 +1,5 @@
 /* Pipeline hazard description translator.
-   Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
 
    Written by Vladimir Makarov <vmakarov@redhat.com>
    
@@ -8974,7 +8974,7 @@ output_internal_insn_latency_func ()
 	    else
 	      {
 		fprintf (output_file,
-			 "          if (%s (%s, %s)\n",
+			 "          if (%s (%s, %s))\n",
 			 bypass->bypass_guard_name, INSN_PARAMETER_NAME,
 			 INSN2_PARAMETER_NAME);
 		fprintf (output_file,

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


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