[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGen / 2007-04-11-InlineAsmStruct.c
blob713c548f35553f30df63b2306e2e352a442028fd
1 // RUN: %clang_cc1 %s -emit-llvm -o -
3 struct V { short X, Y; };
4 int bar(void) {
5 struct V bar;
6 __asm__ volatile("foo %0\n" : "=r"(bar));
7 return bar.X;