llvm-6502/test/Transforms/InstCombine/malloc.ll
2003-09-16 15:29:54 +00:00

8 lines
212 B
LLVM

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