1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-30 15:32:52 +01:00
llvm-mirror/test/Regression/Transforms/DeadStoreElimination/alloca.llx
Chris Lattner 780516c8e1 New testcase
llvm-svn: 15231
2004-07-26 06:11:42 +00:00

9 lines
200 B
Plaintext

; 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
}