llvm-6502/test/Transforms/InstCombine/malloc.ll

8 lines
202 B
LLVM
Raw Normal View History

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