libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / pr84941.c
bloba3a4fdcbb24dd7ebcccb739c572850d8eb6da0e1
1 /* PR inline-asm/84941 */
2 /* { dg-do compile } */
3 /* { dg-skip-if "asm operand has impossible constraints" { hppa*-*-* } } */
4 /* { dg-options "-O2" } */
6 void
7 foo (void)
9 short *b[1] = { 0 };
10 asm volatile ("" : "=m,m" (b), "=r,r" (b) : "1,p" (b));