bolt/deps/llvm-18.1.8/clang/test/CodeGen/implicit-arg.c

10 lines
159 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 %s -emit-llvm -o -
// RUN: %clang_cc1 %s -emit-llvm -O1 -o -
static int bar();
void foo() {
int a = bar();
}
int bar(unsigned a) {
}