summaryrefslogtreecommitdiff
path: root/test/Transforms/DeadStoreElimination/alloca.llx
blob: d7aacb5e94b3abadd0d01177115c171bf47e9f30 (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-upgrade < %s | llvm-as | 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
}