summaryrefslogtreecommitdiff
path: root/test/Transforms/DeadStoreElimination/alloca.llx
blob: c75a618d3d4af51913a4537217fa533cb599bdb0 (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-as < %s | opt -dse | llvm-dis | not grep DEAD

void %test(int* %Q) {
	%P = alloca int
	%DEAD = load int* %Q
	store int %DEAD, int* %P  ;; Alloca goes out of scope, dead store.
	ret void
}