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
[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2007-03-01-VarSizeArrayIdx.c
blob
7a9f89a66e26ba41e9af826a98310f5e61d28211
1
// RUN: %clang_cc1 %s -O3 -emit-llvm -o - | grep mul
2
// PR1233
3
4
float
foo
(
int
w
,
float
A
[][
w
],
int
g
,
int
h
) {
5
return
A
[
g
][
0
];
6
}
7