llvm-6502/test/Transforms/InstCombine/malloc.ll
2006-12-02 04:23:10 +00:00

8 lines
222 B
LLVM

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