Files
llvm-project/llvm/test/FrontendC/implicit-arg.c
Duncan Sands b32d19de6a Remove explicit uses of -emit-llvm, the test infrastructure adds it
automatically.  Use -S with llvm-gcc rather than -c, so tests can
work when llvm-gcc is really dragonegg (which can output IR with -S
but not -c).

llvm-svn: 120158
2010-11-25 21:24:35 +00:00

11 lines
157 B
C

// RUN: %llvmgcc %s -S -O0 -o -
// RUN: %llvmgcc %s -S -O1 -o -
// rdar://6518089
static int bar();
void foo() {
int a = bar();
}
int bar(unsigned a) {
}