Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
3641e811729fc7f21039af595d62bc8e696ff407
/
.
/
test
/
FrontendC
/
implicit-arg.c
blob: a6cb8bce7ed6bbebc706a9fa9fc2d8e463840d4e [
file
] [
log
] [
blame
]
// 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
)
{
}