diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e7357c0..a33d409 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2007-10-30 Janis Johnson <janis187@us.ibm.com> + * tree-ssa.c (execute_update_addresses_taken): Initialize update_vops. + +2007-10-30 Janis Johnson <janis187@us.ibm.com> + * doc/invoke.texi (Option Summary): Add -fdce and -fdse to list of optimization options. (Optimize Options): Add -fdce and -fdse to the list of optimizations diff --git a/gcc/tree-ssa.c b/gcc/tree-ssa.c index c6386be..9baf6bc 100644 --- a/gcc/tree-ssa.c +++ b/gcc/tree-ssa.c @@ -1426,7 +1426,7 @@ execute_update_addresses_taken (void) basic_block bb; bitmap addresses_taken = BITMAP_ALLOC (NULL); bitmap vars_updated = BITMAP_ALLOC (NULL); - bool update_vops; + bool update_vops = false; tree phi; /* Collect into ADDRESSES_TAKEN all variables whose address is taken within |