1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 16:33:37 +01:00
llvm-mirror/test/Transforms/InstCombine/2009-06-11-StoreAddrSpace.ll

8 lines
152 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {store i32 0,}
; PR4366
define void @a() {
store i32 0, i32 addrspace(1)* null
ret void
}