hanchenye-llvm-project/clang/test/CodeGen/functions.c

12 lines
104 B
C
Raw Normal View History

// RUN: clang %s -emit-llvm
int g();
int foo(int i) {
return g(i);
}
int g(int i) {
return g(i);
}