Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
5dcae520df60f0de644da2bc8fdb6b05d2bbbda7
/
.
/
test
/
CodeGen
/
static-forward-decl-fun.c
blob: 636c8fb0d7fac65b9fdeff4584560a145a9eb497 [
file
] [
log
] [
blame
]
// RUN: clang %s -emit-llvm
static
int
staticfun
(
void
);
int
(*
staticuse1
)(
void
)
=
staticfun
;
static
int
staticfun
()
{
return
1
;}
int
(*
staticuse2
)(
void
)
=
staticfun
;