[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Modules / Inputs / asm-goto / a.h
blob877213c5d009fbfb9fd6b80cab4718c231ec81c4
1 int foo(void) {
2 int x;
4 asm goto(""
5 : "=r"(x)
8 : indirect);
9 x = 42;
11 indirect:
12 return x;