https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77579

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Just so there is no confussion on the testcase here it is without need the -D
option:
void f(int x, int y, int z, int *s)
{
   int t = y * z;
   s[0] = t + x;
   s[1] = x - t;
}

Reply via email to