> On Wed, Jun 14, 2017 at 1:14 PM, Prachi Godbole
> wrote:
> > I'm developing a solution to optimize away intermediate stores (loads) for
> static local variables which are assigned to before referenced on every path
> through a function.
> >
> > Currently GCC eliminates all loads/stores in a stra
On Wed, Jun 14, 2017 at 1:14 PM, Prachi Godbole
wrote:
> I'm developing a solution to optimize away intermediate stores (loads) for
> static local variables which are assigned to before referenced on every path
> through a function.
>
> Currently GCC eliminates all loads/stores in a straight lin
On Wed, Jun 14, 2017 at 12:14 PM, Prachi Godbole
wrote:
> I'm developing a solution to optimize away intermediate stores (loads) for
> static local variables which are assigned to before referenced on every path
> through a function.
>
> Currently GCC eliminates all loads/stores in a straight li
I'm developing a solution to optimize away intermediate stores (loads) for
static local variables which are assigned to before referenced on every path
through a function.
Currently GCC eliminates all loads/stores in a straight line code but not in
control structures. AFAIU, passes like sccvn,