aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/malloc.ll
blob: 34fdfe862e826d872a45cdf020909f1e0d1af25a (plain)
1
2
3
4
5
6
7
; test that malloc's with a constant argument are promoted to array allocations
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | grep getelementptr

int* %test() {
	%X = malloc int, uint 4
	ret int* %X
}