summaryrefslogtreecommitdiff
path: root/test/Transforms/DeadStoreElimination/no-targetdata.ll
blob: 6c7f940316a0042c8f2fb885e7975746be297f97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: opt %s -basicaa -dse -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
}