Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
3ea9e33ea25e0c2b12db56418ba3f994eb662c04
/
.
/
test
/
CodeGen
/
cast.c
blob: 5f340c5bb670d75861303c69666318aa53f489f6 [
file
] [
log
] [
blame
]
Shih-wei Liao
ea28516
2010-06-04 12:34:56 -0700
[
diff
] [
blame
]
1
// RUN: %clang_cc1 %s -emit-llvm -o %t
2
3
extern
void
go
(
const
void
*
p
);
4
float
v
[
2
]
=
{
0.0
,
1.0
};
5
void
foo
(
void
)
{
go
(
v
);
}
6