------- Comment #5 from rguenth at gcc dot gnu dot org 2009-07-28 11:22 -------
After early SRA we get
f$x_8 = g;
D.2142_6 = f$x_8;
D.2141_7 = D.2142_6 (3);
which now misses a constant propagation of &g into the call which is why
inlining doesn't catch this opportunity. Put one in and the abstraction
goes away.
Puting FRE into early optimizations also would get this.
--
rguenth at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rguenth at gcc dot gnu dot
| |org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40874