summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/alloca.ll
blob: 23a52c328d7fc15e9eb557a5307a21aa1711e2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; Zero byte allocas should be deleted.

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep alloca

declare void %use(...)
void %test() {
	%X = alloca [0 x int]
	call void(...)* %use([0 x int] *%X)
	%Y = alloca int, uint 0
	call void(...)* %use(int* %Y)
	%Z = alloca {}
	call void(...)* %use({}* %Z)
	ret void
}