]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/implicit-arg.c
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
[FreeBSD/FreeBSD.git] / test / CodeGen / implicit-arg.c
1 // RUN: %clang_cc1 %s -emit-llvm     -o -
2 // RUN: %clang_cc1 %s -emit-llvm -O1 -o -
3 // rdar://6518089
4
5 static int bar();
6 void foo() {
7   int a = bar();
8 }
9 int bar(unsigned a) {
10 }