1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/Transforms/DeadStoreElimination/no-targetdata.ll

16 lines
339 B
LLVM
Raw Normal View History

; RUN: opt -basicaa -dse -S < %s | FileCheck %s
declare void @test1f()
define void @test1(i32* noalias %p) {
store i32 1, i32* %p
call void @test1f()
store i32 2, i32 *%p
ret void
; CHECK-LABEL: define void @test1(
; CHECK-NOT: store
; CHECK-NEXT: call void
; CHECK-NEXT: store i32 2
; CHECK-NEXT: ret void
}