Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
test
/
CodeGen
/
implicit-arg.c
blob: c25f034a1a38849da75ad597e4905b3848936952 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 %s -emit-llvm -o -
// RUN: %clang_cc1 %s -emit-llvm -O1 -o -
// rdar://6518089
static
int
bar
();
void
foo
()
{
int
a
=
bar
();
}
int
bar
(
unsigned
a
)
{
}