diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-03-11 21:08:00 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-03-11 21:08:00 +0000 |
commit | 6219f064f8b00b432630b4578868345816e290f8 (patch) | |
tree | 184f4b5d37ef3817fea745c5921af82a0b54a38e /gcc/ipa-reference.c | |
parent | 47b5db9d7340a6f5215c4041455cf5e467fcf0a4 (diff) | |
download | gcc-6219f064f8b00b432630b4578868345816e290f8.tar.gz |
2008-03-11 Andrew Pinski <andrew_pinski@playstation.sony.com>
* ipa-reference.c (static_execute): Remove module_statics_const and
associated setting code.
2008-03-11 Andrew Pinski <andrew_pinski@playstation.sony.com>
PR tree-opt/35403
* gcc.dg/tree-ssa/ipa-reference-1.c: New testcase.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@133119 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r-- | gcc/ipa-reference.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c index 1a962c52cdb..87d8c2fa144 100644 --- a/gcc/ipa-reference.c +++ b/gcc/ipa-reference.c @@ -949,7 +949,6 @@ static_execute (void) unsigned int index; bitmap_iterator bi; bitmap module_statics_readonly = BITMAP_ALLOC (&ipa_obstack); - bitmap module_statics_const = BITMAP_ALLOC (&ipa_obstack); bitmap bm_temp = BITMAP_ALLOC (&ipa_obstack); EXECUTE_IF_SET_IN_BITMAP (module_statics_escape, 0, index, bi) @@ -999,14 +998,6 @@ static_execute (void) fprintf (dump_file, "read-only var %s\n", get_static_name (index)); } - if (DECL_INITIAL (var) - && is_gimple_min_invariant (DECL_INITIAL (var))) - { - bitmap_set_bit (module_statics_const, index); - if (dump_file) - fprintf (dump_file, "read-only constant %s\n", - get_static_name (index)); - } } BITMAP_FREE(module_statics_escape); @@ -1036,7 +1027,6 @@ static_execute (void) } BITMAP_FREE(module_statics_readonly); - BITMAP_FREE(module_statics_const); BITMAP_FREE(bm_temp); } |