repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git]
/
test
/
FrontendC
/
2007-03-01-VarSizeArrayIdx.c
blob
6ebe79672f58b6a969747e7bde982a4a53a05921
1
// RUN: %llvmgcc %s -O3 -S -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