libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr51106-1.c
bloba2bf08e74e0b5266fb9d929489252e430ecf57fc
1 /* PR target/51106 */
2 /* { dg-do compile } */
3 /* { dg-skip-if "RTL error" { "*-*-*" } { "-fno-fat-lto-objects" } { "" } } */
5 int
6 foo (int x)
8 asm goto ("" : : "i" (x) : : lab); /* { dg-error "impossible constraint" } */
9 /* { dg-warning "probably does not match constraints" "" { target *-*-* } .-1 } */
10 return 1;
11 lab:
12 return 0;