rt_gccstream/gcc/testsuite/gcc.dg/asm-8.c

10 lines
191 B
C

/* PR inline-asm/11676 */
/* { dg-do compile } */
/* { dg-options "-O -Wall" } */
void foo(void)
{
long x = 0;
asm volatile ("" : "=r"(x) : "r"(x)); /* { dg-bogus "uninitialized" } */
}