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
/
Transforms
/
InstCombine
/
malloc.ll
blob
b6ebbeaf57530b886e65ba6945ef9eaac695082d
1
; test that malloc's with a constant argument are promoted to array allocations
2
; RUN: opt < %s -instcombine -S | grep getelementptr
3
4
define i32* @test() {
5
%X = malloc i32, i32 4
6
ret i32* %X
7
}