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