PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / asm-9.c
blob4e3244169c779d9d83b42779251dddbfcd392274
1 /* PR inline-asm/15740 */
2 /* { dg-do compile } */
3 /* { dg-options "-O" } */
5 void foo(void)
7 int a, b;
8 a = 1;
9 b = a + 1;
10 asm ("" : : "m" (a));