blob: 9959419f9b7c88869daa180d70cd5272c5c602ee [file] [log] [blame]
// 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) {
}