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]

Re: java/decl.c patch for clear_binding_level


Jeff Sturm <jsturm@one-point.com> writes:

> Yep.  The bytecode compiler is completely broken on the trunk.  This seems
> to fix it:
> ... 
> 	(clear_binding_level): Remove excess initializer.
>  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};

I believe I fixed that earlier today in both the trunch and the
branch.  However, I think the correct version is:
        NULL_BINDING_LEVEL, LARGEST_PC, 0};
-- 
	--Per Bothner
per@bothner.com   http://www.bothner.com/~per/


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