Files
clang-p2996/clang/test/CodeGen/implicit-arg.c
Rafael Espindola ff7cea8c1a Don't pass -O0 to clang_cc1, it is the default.
llvm-svn: 189910
2013-09-04 04:12:25 +00:00

11 lines
177 B
C

// RUN: %clang_cc1 %s -emit-llvm -o -
// RUN: %clang_cc1 %s -emit-llvm -O1 -o -
// rdar://6518089
static int bar();
void foo() {
int a = bar();
}
int bar(unsigned a) {
}