OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / asm-8.c
1 /* PR inline-asm/11676 */
2 /* { dg-do compile } */
3 /* { dg-options "-O -Wall" } */
4
5 void foo(void)
6 {
7   long x = 0;
8   asm volatile ("" : "=r"(x) : "r"(x)); /* { dg-bogus "uninitialized" } */
9 }