blob: 281825900b521844a27d83afeaef74829d2b8027 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-Wunused" } */
int
f1 (void)
{
int c = ({
int a;
a = 1;
a; });
return c;
}
void
f2 (void)
{
int f;
f = 0;
__asm__ __volatile__ ("" : "+r" (f));
}