llvm-6502/test/Transforms/InstCombine/malloc.ll
Chris Lattner efd74a0159 The instruction combining pass removes dead instructions, there is no need
to run the die pass after it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11942 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-28 05:26:06 +00:00

8 lines
207 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
int* %test() {
%X = malloc int, uint 4
ret int* %X
}