summaryrefslogtreecommitdiff
path: root/test/Transforms/DeadStoreElimination/no-targetdata.ll
blob: 4022d76dcb52d910a8f409090cb75d5973f9c865 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; 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: define void @test1
; CHECK-NOT: store
; CHECK-NEXT: call void
; CHECK-NEXT: store i32 2
; CHECK-NEXT: ret void
}