Files
clang-p2996/llvm/test/Regression/Transforms/InstCombine/malloc.ll
Chris Lattner 9771be0482 New testcase for malloc promotion
llvm-svn: 4533
2002-11-04 16:18:07 +00:00

8 lines
202 B
LLVM

; 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
}