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