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