1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/Transforms/InstCombine/malloc.ll
Chris Lattner d76ec48916 new testcase, update old one.
llvm-svn: 35699
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
}