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