1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00
llvm-mirror/test/FrontendC/implicit-arg.c
Evan Cheng 80a6c8a024 Forgot this test case.
llvm-svn: 63089
2009-01-27 02:59:39 +00:00

11 lines
179 B
C

// 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) {
}