1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-17 18:31:04 +00:00
llvm-6502/test/Transforms/DeadStoreElimination/free.llx

9 lines
164 B
Plaintext
Raw Normal View History

; RUN: llvm-as < %s | opt -dse | llvm-dis | not grep DEAD
void %test(int* %Q, int* %P) {
%DEAD = load int* %Q
store int %DEAD, int* %P
free int* %P
ret void
}