OSDN Git Service

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