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

--- Comment #1 from David Binderman <dcb314 at hotmail dot com> ---
Reduced C code is:

typedef struct {
  float a;
  float b
} c;
c d, f, g;
float e;
h() {
  g.a = d.a * f.a - f.b;
  g.b = d.a * f.b + e;
}

Reply via email to