blob: 5cd36877fa1db25c7e7e7e9d2735df9094b0bf84 [file] [log] [blame]
/* PR rtl-optimization/100590 */
/* { dg-do compile } */
/* { dg-options "-O1 -fno-dce -w" } */
int
foo (void)
{
int x;
asm goto ("" : "+r" (x) : : : lab);
return 0;
lab:
return 1;
}