Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
0e0a7a45d3d0a8c865a078459d2e1c6d8967a100
/
.
/
test
/
C++Frontend
/
2005-02-20-BrokenReferenceTest.cpp
blob: af15f814f168074ac0d203a6fa99cb8397631e77 [
file
] [
log
] [
blame
]
// RUN: %llvmgxx %s -S -o /dev/null
void
test
(
unsigned
char
*
b
,
int
rb
)
{
typedef
unsigned
char
imgfoo
[
10
][
rb
];
imgfoo
&
br
=
*(
imgfoo
*)
b
;
br
[
0
][
0
]
=
1
;
rb
=
br
[
0
][
0
];
}