summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/malloc.ll
blob: 88a003a1daa3ce6f0217ad9a9a1bbcf974ef70df (plain)
1
2
3
4
5
6
7
; test that malloc's with a constant argument are promoted to array allocations
; RUN: opt %s -instcombine -S | grep getelementptr

define i32* @test() {
	%X = malloc i32, i32 4
	ret i32* %X
}