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]

[vta,vta4.3] fix excess `)' in var_location rtl dump


I noticed a few weeks ago that there was one too many close paren in
rtl dumps of debug insns and notes.  This patch fixes it.  Installing
in the vta and vta4.3 branches.

for  gcc/ChangeLog.vta
from  Alexandre Oliva  <aoliva@redhat.com>

	* print-rtl.c (print_rtx): Remove excess parenthesis after
	VAR_LOCATION.
	
Index: gcc/print-rtl.c
===================================================================
--- gcc/print-rtl.c.orig	2008-07-29 19:32:47.000000000 -0300
+++ gcc/print-rtl.c	2008-08-14 23:55:30.000000000 -0300
@@ -226,7 +226,6 @@ print_rtx (const_rtx in_rtx)
 	      if (PAT_VAR_LOCATION_STATUS (in_rtx)
 		  == VAR_INIT_STATUS_UNINITIALIZED)
 		fprintf (outfile, " [uninit]");
-	      fputc (')', outfile);
 	      sawclose = 1;
 	      i = GET_RTX_LENGTH (VAR_LOCATION);
 	    }
-- 
Alexandre Oliva         http://www.lsd.ic.unicamp.br/~oliva/
Free Software Evangelist  oliva@{lsd.ic.unicamp.br, gnu.org}
FSFLA Board Member       ÂSÃ Libre! => http://www.fsfla.org/
Red Hat Compiler Engineer   aoliva@{redhat.com, gcc.gnu.org}

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