summaryrefslogtreecommitdiff
path: root/test/FrontendC/implicit-arg.c
blob: a6cb8bce7ed6bbebc706a9fa9fc2d8e463840d4e (plain)
1
2
3
4
5
6
7
8
9
10
// 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) {
}