repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
2005-02-20-BrokenReferenceTest.cpp
blob
36f911e227fe28cf0ae88619bda87c02d7af94b6
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
void
test
(
unsigned char
*
b
,
int
rb
) {
4
typedef
unsigned char
imgfoo
[
10
][
rb
];
5
imgfoo
&
br
= *(
imgfoo
*)
b
;
6
7
br
[
0
][
0
] =
1
;
8
9
rb
=
br
[
0
][
0
];
10
}