]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/asm-8.c
Update copyright years.
[thirdparty/gcc.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 }