blob: 158a16e53665acfe852b52f51b1082962a118558 [file] [log] [blame]
// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
struct V { short X, Y; };
int bar() {
struct V bar;
__asm__ volatile("foo %0\n" : "=r"(bar));
return bar.X;
}