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]

[tree-ssa] Small pretty printing fix


Hello,

this patch removes supefluous semicolon that is being printed after
statements.  Commited as obvious.

Zdenek

	* tree-pretty-print.c (dump_generic_node): Remove superflous ';'.

Index: tree-pretty-print.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/Attic/tree-pretty-print.c,v
retrieving revision 1.1.2.63
diff -c -3 -p -r1.1.2.63 tree-pretty-print.c
*** tree-pretty-print.c	21 Nov 2003 23:12:35 -0000	1.1.2.63
--- tree-pretty-print.c	22 Nov 2003 14:59:02 -0000
*************** dump_generic_node (pretty_printer *buffe
*** 734,740 ****
  	    else
  	      first = false;
  	    dump_generic_node (buffer, tsi_stmt (si), spc, flags, true);
- 	    pp_character (buffer, ';');
  	  }
        }
        break;
--- 734,739 ----


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