https://gcc.gnu.org/bugzilla/show_bug.cgi?id=106087
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|needs-reduction | --- Comment #10 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Reduced testcase: static int t; int f(void) { int tt, tt1; asm("":"=r"(tt), "=r"(tt1)); t = tt1; return tt; }