1 // RUN: %llvmgcc %s -S -o - | llc 2 3 union U { int x; float p; }; 4 void foo() { 5 union U bar; 6 __asm__ volatile("foo %0\n" : "=r"(bar)); 7 } 8