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