aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/implicit-arg.c
blob: 3630fbbbdb1a62ec61196997d85b46ddb4d6aeab (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 %s -Wno-error=return-type -emit-llvm     -o -
// RUN: %clang_cc1 %s -Wno-error=return-type -emit-llvm -O1 -o -

static int bar();
void foo() {
  int a = bar();
}
int bar(unsigned a) {
}