Forgot this test case.

llvm-svn: 63089
This commit is contained in:
Evan Cheng 2009-01-27 02:59:39 +00:00
parent 2e0343e321
commit 80a6c8a024

View File

@ -0,0 +1,10 @@
// RUN: %llvmgcc %s -S -emit-llvm -O0 -o -
// RUN: %llvmgcc %s -S -emit-llvm -O1 -o -
// rdar://6518089
static int bar();
void foo() {
int a = bar();
}
int bar(unsigned a) {
}