forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscoped-noalias.ll
34 lines (30 loc) · 1020 Bytes
/
scoped-noalias.ll
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -S -scoped-noalias-aa -dse < %s | FileCheck %s
; Assume that %p1 != %p2 if and only if %c is true. In that case the noalias
; metadata is correct, but the first store cannot be eliminated, as it may be
; read-clobbered by the load.
define void @test(i1 %c, i8* %p1, i8* %p2) {
; CHECK-LABEL: @test(
; CHECK-NEXT: store i8 0, i8* [[P1:%.*]], align 1
; CHECK-NEXT: [[TMP1:%.*]] = load i8, i8* [[P2:%.*]], align 1, !alias.scope !0
; CHECK-NEXT: br i1 [[C:%.*]], label [[IF:%.*]], label [[ELSE:%.*]]
; CHECK: if:
; CHECK-NEXT: store i8 1, i8* [[P1]], align 1, !noalias !0
; CHECK-NEXT: ret void
; CHECK: else:
; CHECK-NEXT: store i8 2, i8* [[P1]], align 1
; CHECK-NEXT: ret void
;
store i8 0, i8* %p1
load i8, i8* %p2, !alias.scope !2
br i1 %c, label %if, label %else
if:
store i8 1, i8* %p1, !noalias !2
ret void
else:
store i8 2, i8* %p1
ret void
}
!0 = !{!0}
!1 = !{!1, !0}
!2 = !{!1}