When removing a function from the function set and adding it to deferred, we
[llvm.git] / test / FrontendC / 2007-04-13-InlineAsmStruct2.c
blob44ddeb3f95d8d1e147fd658b1536e8a4c77a2afe
1 // RUN: %llvmgcc %s -S -o - | grep {call void asm}
3 struct V { short X, Y; };
4 int bar() {
5 struct V bar;
6 __asm__ volatile("foo %0\n" :: "r"(bar));
7 return bar.X;