1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-31 07:52:55 +01:00
llvm-mirror/test/Regression/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
}