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