diff options
author | Janis Johnson <janis187@us.ibm.com> | 2007-10-30 22:47:38 +0000 |
---|---|---|
committer | Janis Johnson <janis@gcc.gnu.org> | 2007-10-30 22:47:38 +0000 |
commit | ba927a8b4ceb9cf723ad066f04799df873b0c1f2 (patch) | |
tree | 91719ed756c71beb6a9f839e95a7f0a4388c08f3 /gcc | |
parent | 0c166d0f1c30eed01e45c9f07e0db280389cc22b (diff) | |
download | gcc-ba927a8b4ceb9cf723ad066f04799df873b0c1f2.zip gcc-ba927a8b4ceb9cf723ad066f04799df873b0c1f2.tar.gz gcc-ba927a8b4ceb9cf723ad066f04799df873b0c1f2.tar.bz2 |
* tree-ssa.c (execute_update_addresses_taken): Initialize update_vops.
From-SVN: r129787
Diffstat (limited to 'gcc')
-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 |