OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr35318.c
1 /* { dg-skip-if "" { pdp11-*-* } { "*" } { "" } } */
2 /* PR target/35318 */
3
4 void
5 foo ()
6 {
7   double x = 4, y;
8   __asm__ volatile ("" : "=r,r" (x), "=r,r" (y) : "%0,0" (x), "m,r" (8));
9 }