Commit 08e14b2a by Daniel Berlin Committed by Daniel Berlin

re PR tree-optimization/39100 (-fstrict-aliasing miscompilation)

2009-02-05  Daniel Berlin  <dberlin@dberlin.org>
	    Richard Guenther  <rguenther@suse.de>

	PR tree-optimization/39100
	* tree-ssa-structalias.c (do_ds_constraint): Actually do what the
	comment says and add edges.


Co-Authored-By: Richard Guenther <rguenther@suse.de>

From-SVN: r143951
parent 37d5c6ba
2009-02-05 Daniel Berlin <dberlin@dberlin.org>
Richard Guenther <rguenther@suse.de>
PR tree-optimization/39100
* tree-ssa-structalias.c (do_ds_constraint): Actually do what the
comment says and add edges.
2009-02-05 Joseph Myers <joseph@codesourcery.com> 2009-02-05 Joseph Myers <joseph@codesourcery.com>
PR c/35435 PR c/35435
......
2009-02-05 Daniel Berlin <dberlin@dberlin.org>
* gcc.c-torture/execute/pr39100.c: New.
2009-02-05 Joseph Myers <joseph@codesourcery.com> 2009-02-05 Joseph Myers <joseph@codesourcery.com>
PR c/35435 PR c/35435
......
/* Bad PTA results (incorrect store handling) was causing us to delete
*na = 0 store. */
typedef struct E
{
int p;
struct E *n;
} *EP;
typedef struct C
{
EP x;
short cn, cp;
} *CP;
__attribute__((noinline)) CP
foo (CP h, EP x)
{
EP pl = 0, *pa = &pl;
EP nl = 0, *na = &nl;
EP n;
while (x)
{
n = x->n;
if ((x->p & 1) == 1)
{
h->cp++;
*pa = x;
pa = &((*pa)->n);
}
else
{
h->cn++;
*na = x;
na = &((*na)->n);
}
x = n;
}
*pa = nl;
*na = 0;
h->x = pl;
return h;
}
int
main (void)
{
struct C c = { 0, 0, 0 };
struct E e[2] = { { 0, &e[1] }, { 1, 0 } };
EP p;
foo (&c, &e[0]);
if (c.cn != 1 || c.cp != 1)
__builtin_abort ();
if (c.x != &e[1])
__builtin_abort ();
if (e[1].n != &e[0])
__builtin_abort ();
if (e[0].n)
__builtin_abort ();
return 0;
}
...@@ -1657,15 +1657,17 @@ do_ds_constraint (constraint_t c, bitmap delta) ...@@ -1657,15 +1657,17 @@ do_ds_constraint (constraint_t c, bitmap delta)
t = find (v->id); t = find (v->id);
tmp = get_varinfo (t)->solution; tmp = get_varinfo (t)->solution;
if (set_union_with_increment (tmp, sol, 0)) if (add_graph_edge (graph, t, rhs))
{ {
get_varinfo (t)->solution = tmp; if (bitmap_ior_into (get_varinfo (t)->solution, sol))
if (t == rhs)
sol = get_varinfo (rhs)->solution;
if (!TEST_BIT (changed, t))
{ {
SET_BIT (changed, t); if (t == rhs)
changed_count++; sol = get_varinfo (rhs)->solution;
if (!TEST_BIT (changed, t))
{
SET_BIT (changed, t);
changed_count++;
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment