https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108684
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |wrong-code --- Comment #12 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Here is a testcase which shows the wrong code which was mentioned during the review: ``` static int t; int f (int *a) { int t1, t2 = 0; asm ("shouldshowupstill %1" : "=r" (t1), "=m"(t2) : : ); t = t1; return t2; } ```