summaryrefslogtreecommitdiff
path: root/test/Transforms/DeadStoreElimination/no-targetdata.ll
blob: c0c7c58d4eada65d49344c40b3bc8d8f49274b21 (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-LABEL: define void @test1(
; CHECK-NOT: store
; CHECK-NEXT: call void
; CHECK-NEXT: store i32 2
; CHECK-NEXT: ret void
}