mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-28 22:42:52 +01:00
6 lines
151 B
LLVM
6 lines
151 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep load
|
|
void %test(int* %P) {
|
|
%X = volatile load int* %P ; Dead but not deletable!
|
|
ret void
|
|
}
|