Commit b0268cc0 by Jakub Jelinek Committed by Jakub Jelinek

re PR debug/45419 (-fcompare-debug failure at -O3)

	PR debug/45419
	* tree-ssa-live.c (dump_enumerated_decls): Clear the whole wi variable.

From-SVN: r163654
parent f2b11865
2010-08-30 Jakub Jelinek <jakub@redhat.com> 2010-08-30 Jakub Jelinek <jakub@redhat.com>
PR debug/45419
* tree-ssa-live.c (dump_enumerated_decls): Clear the whole wi variable.
PR middle-end/45423 PR middle-end/45423
* gimplify.c (goa_stabilize_expr): Handle TRUTH_NOT_EXPR * gimplify.c (goa_stabilize_expr): Handle TRUTH_NOT_EXPR
and TRUTH_{AND,OR,XOR}_EXPR. and TRUTH_{AND,OR,XOR}_EXPR.
......
...@@ -1245,8 +1245,8 @@ dump_enumerated_decls (FILE *file, int flags) ...@@ -1245,8 +1245,8 @@ dump_enumerated_decls (FILE *file, int flags)
struct walk_stmt_info wi; struct walk_stmt_info wi;
VEC (numbered_tree, heap) *decl_list = VEC_alloc (numbered_tree, heap, 40); VEC (numbered_tree, heap) *decl_list = VEC_alloc (numbered_tree, heap, 40);
memset (&wi, '\0', sizeof (wi));
wi.info = (void*) decl_list; wi.info = (void*) decl_list;
wi.pset = NULL;
FOR_EACH_BB (bb) FOR_EACH_BB (bb)
{ {
gimple_stmt_iterator gsi; gimple_stmt_iterator gsi;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment