mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:10:33 +08:00
re PR tree-optimization/49217 (Wrong optimization of code)
2011-05-29 Richard Guenther <rguenther@suse.de> PR tree-optimization/49217 * ipa-pure-const.c (propagate_pure_const): Fix typos. * gcc.dg/torture/pr49217.c: New testcase. From-SVN: r174400
This commit is contained in:
parent
4a5ba933e7
commit
61e374ab76
@ -1,3 +1,8 @@
|
||||
2011-05-29 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/49217
|
||||
* ipa-pure-const.c (propagate_pure_const): Fix typos.
|
||||
|
||||
2011-05-28 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* lto-streamer-out.c (hash_string_slot_node): Hash string based on its
|
||||
|
@ -1225,7 +1225,7 @@ propagate_pure_const (void)
|
||||
break;
|
||||
|
||||
/* Now process the indirect call. */
|
||||
for (ie = node->indirect_calls; ie; ie = ie->next_callee)
|
||||
for (ie = w->indirect_calls; ie; ie = ie->next_callee)
|
||||
{
|
||||
enum pure_const_state_e edge_state = IPA_CONST;
|
||||
bool edge_looping = false;
|
||||
@ -1248,7 +1248,7 @@ propagate_pure_const (void)
|
||||
break;
|
||||
|
||||
/* And finally all loads and stores. */
|
||||
for (i = 0; ipa_ref_list_reference_iterate (&node->ref_list, i, ref); i++)
|
||||
for (i = 0; ipa_ref_list_reference_iterate (&w->ref_list, i, ref); i++)
|
||||
{
|
||||
enum pure_const_state_e ref_state = IPA_CONST;
|
||||
bool ref_looping = false;
|
||||
|
@ -1,3 +1,8 @@
|
||||
2011-05-29 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
PR tree-optimization/49217
|
||||
* gcc.dg/torture/pr49217.c: New testcase.
|
||||
|
||||
2011-05-29 Ira Rosen <ira.rosen@linaro.org>
|
||||
|
||||
PR testsuite/49222
|
||||
|
26
gcc/testsuite/gcc.dg/torture/pr49217.c
Normal file
26
gcc/testsuite/gcc.dg/torture/pr49217.c
Normal file
@ -0,0 +1,26 @@
|
||||
/* { dg-do run } */
|
||||
/* { dg-options "-fno-early-inlining" } */
|
||||
|
||||
extern void abort (void);
|
||||
int i;
|
||||
static void foo(void);
|
||||
void __attribute__((noinline))
|
||||
bar (void)
|
||||
{
|
||||
if (!i)
|
||||
foo ();
|
||||
}
|
||||
static void
|
||||
foo(void)
|
||||
{
|
||||
i = 1;
|
||||
bar ();
|
||||
}
|
||||
int main()
|
||||
{
|
||||
i = 0;
|
||||
bar();
|
||||
if (i != 1)
|
||||
abort ();
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user