llvm-6502/test/Transforms/InstCombine/malloc.ll
2009-09-08 22:34:10 +00:00

8 lines
193 B
LLVM

; test that malloc's with a constant argument are promoted to array allocations
; RUN: opt %s -instcombine -S | grep getelementptr
define i32* @test() {
%X = malloc i32, i32 4
ret i32* %X
}