Commit e76314a7 by Sergei Dyshel Committed by Razya Ladelsky

matrix-reorg.c (transform_allocation_sites): Initializers added to avoid the warning.

2008-09-25 Sergei Dyshel <sergeid@il.ibm.com>

      * matrix-reorg.c (transform_allocation_sites): Initializers
        added to avoid the warning.

From-SVN: r140661
parent 2fb16412
2008-09-25 Sergei Dyshel <sergeid@il.ibm.com>
* matrix-reorg.c (transform_allocation_sites): Initializers
added to avoid the warning.
2008-09-25 Martin Jambor <mjambor@suse.cz> 2008-09-25 Martin Jambor <mjambor@suse.cz>
* cgraph.c (free_nodes): New variable. * cgraph.c (free_nodes): New variable.
......
...@@ -2026,7 +2026,7 @@ transform_allocation_sites (void **slot, void *data ATTRIBUTE_UNUSED) ...@@ -2026,7 +2026,7 @@ transform_allocation_sites (void **slot, void *data ATTRIBUTE_UNUSED)
struct cgraph_node *c_node; struct cgraph_node *c_node;
struct cgraph_edge *e; struct cgraph_edge *e;
gimple_stmt_iterator gsi; gimple_stmt_iterator gsi;
struct malloc_call_data mcd; struct malloc_call_data mcd = {NULL, NULL_TREE, NULL_TREE};
HOST_WIDE_INT element_size; HOST_WIDE_INT element_size;
imm_use_iterator imm_iter; imm_use_iterator imm_iter;
......
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