mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
780516c8e1
llvm-svn: 15231
9 lines
200 B
Plaintext
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
|
|
}
|