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
This commit is contained in:
Sergei Dyshel 2008-09-25 11:21:43 +00:00 committed by Razya Ladelsky
parent 2fb16412ad
commit e76314a76e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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>
* cgraph.c (free_nodes): New variable.

View File

@ -2026,7 +2026,7 @@ transform_allocation_sites (void **slot, void *data ATTRIBUTE_UNUSED)
struct cgraph_node *c_node;
struct cgraph_edge *e;
gimple_stmt_iterator gsi;
struct malloc_call_data mcd;
struct malloc_call_data mcd = {NULL, NULL_TREE, NULL_TREE};
HOST_WIDE_INT element_size;
imm_use_iterator imm_iter;