llvm-6502/test/Transforms/InstCombine/malloc.ll
Chris Lattner b62eee4a69 new testcase, update old one.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35699 91177308-0d34-0410-b5e6-96231b3b80d8
2007-04-06 18:56:54 +00:00

8 lines
213 B
LLVM

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