blob: 6a4601a2ebeeef720eef3cae6209fa1839321e4d [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; test that malloc's with a constant argument are promoted to array allocations
2; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep getelementptr
3
4define i32* @test() {
5 %X = malloc i32, i32 4
6 ret i32* %X
7}