bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/codegen-opt/foo.h
2025-02-14 19:21:04 +01:00

10 lines
132 B
C

void f1(int &);
static void f2() {}
inline void foo() {
static int i;
f1(i);
f2();
}
inline void foo2() {
}
void foo_ext() {}