java/decl.c patch for clear_binding_level

Per Bothner per@bothner.com
Sat Mar 17 12:49:00 GMT 2001


I broke this in my Match 15 change (loosing count of the number of
fields I removed from struct binding_level).

I checked this into the trunk and will check it into the gcc3 branch.

2001-03-17  Per Bothner  <per@bothner.com>

	* decl.c (clear_binding_level):  Fix initializer (broke 03-15).

Index: decl.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/decl.c,v
retrieving revision 1.93
diff -u -p -r1.93 decl.c
--- decl.c	2001/03/16 05:31:51	1.93
+++ decl.c	2001/03/17 20:45:49
@@ -311,7 +311,7 @@ static struct binding_level *global_bind
 
 static struct binding_level clear_binding_level
   = {NULL_TREE, NULL_TREE, NULL_TREE, NULL_TREE,
-       NULL_BINDING_LEVEL, 0, LARGEST_PC};
+       NULL_BINDING_LEVEL, LARGEST_PC, 0};
 
 #if 0
 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
-- 
	--Per Bothner
per@bothner.com   http://www.bothner.com/~per/



More information about the Gcc-patches mailing list