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]

[PATCH]: Put back accidently deleted line


I must have finger fudged a while back when i committed the alloc-pool
patch.
Fred Fish noticed i accidently deleted a line in dump_flow_info.
Never noticed because it was shadowing a global variable, and it only
affected output in dump files.

Committed as obvious.

2003-02-07  Daniel Berlin  <dberlin@dberlin.org>

	* cfg.c (dump_flow_info): Add back accidently deleted line.

Index: cfg.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cfg.c,v
retrieving revision 1.40
diff -u -3 -p -r1.40 cfg.c
--- cfg.c	18 Jan 2003 02:26:41 -0000	1.40
+++ cfg.c	7 Feb 2003 21:15:39 -0000
@@ -487,6 +487,7 @@ dump_flow_info (file)
      FILE *file;
 {
   int i;
+  int max_regno = max_reg_num ();
   basic_block bb;
   static const char * const reg_class_names[] = REG_CLASS_NAMES;


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