blob: 3231acf53d89d4c3ba7eb71c04a88d3ece7dd46c (
plain)
1
2
3
4
5
6
7
|
; 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
}
|