1 // RUN: %clang_cc1 %s -emit-llvm -o - 2 3 struct V { short X, Y; }; bar()4 int bar() { 5 struct V bar; 6 __asm__ volatile("foo %0\n" : "=r"(bar)); 7 return bar.X; 8 } 9