[llvm] r236981 - [Testsuite] Renumber metadata in ScopedNoAliasAA test to match CHECK lines
Adam Nemet
anemet at apple.com
Mon May 11 02:10:14 PDT 2015
Author: anemet
Date: Mon May 11 04:10:14 2015
New Revision: 236981
URL: http://llvm.org/viewvc/llvm-project?rev=236981&view=rev
Log:
[Testsuite] Renumber metadata in ScopedNoAliasAA test to match CHECK lines
Summary:
Now it's much easier to follow what's happening in this test.
Also removed some unused metadata entries.
Reviewers: hfinkel
Reviewed By: hfinkel
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D9601
Modified:
llvm/trunk/test/Analysis/ScopedNoAliasAA/basic-domains.ll
Modified: llvm/trunk/test/Analysis/ScopedNoAliasAA/basic-domains.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/ScopedNoAliasAA/basic-domains.ll?rev=236981&r1=236980&r2=236981&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/ScopedNoAliasAA/basic-domains.ll (original)
+++ llvm/trunk/test/Analysis/ScopedNoAliasAA/basic-domains.ll Mon May 11 04:10:14 2015
@@ -5,42 +5,40 @@ target triple = "x86_64-unknown-linux-gn
define void @foo1(float* nocapture %a, float* nocapture readonly %c) #0 {
entry:
; CHECK-LABEL: Function: foo1
- %0 = load float, float* %c, align 4, !alias.scope !9
+ %0 = load float, float* %c, align 4, !alias.scope !0
%arrayidx.i = getelementptr inbounds float, float* %a, i64 5
store float %0, float* %arrayidx.i, align 4, !noalias !6
- %1 = load float, float* %c, align 4, !alias.scope !5
+ %1 = load float, float* %c, align 4, !alias.scope !7
%arrayidx.i2 = getelementptr inbounds float, float* %a, i64 15
store float %1, float* %arrayidx.i2, align 4, !noalias !6
%2 = load float, float* %c, align 4, !alias.scope !6
%arrayidx.i3 = getelementptr inbounds float, float* %a, i64 16
- store float %2, float* %arrayidx.i3, align 4, !noalias !5
+ store float %2, float* %arrayidx.i3, align 4, !noalias !7
ret void
}
attributes #0 = { nounwind uwtable }
-!0 = !{!0, !"some domain"}
-!1 = !{!1, !"some other domain"}
+!2 = !{!2, !"some domain"}
+!5 = !{!5, !"some other domain"}
; Two scopes (which must be self-referential to avoid being "uniqued"):
-!2 = !{!2, !0, !"a scope in dom0"}
-!3 = !{!2}
+!1 = !{!1, !2, !"a scope in dom0"}
-!4 = !{!4, !0, !"another scope in dom0"}
-!5 = !{!4}
+!3 = !{!3, !2, !"another scope in dom0"}
+!7 = !{!3}
; A list of the two scopes.
-!6 = !{!2, !4}
+!6 = !{!1, !3}
; Another scope in the second domain
-!7 = !{!7, !1, !"another scope in dom1"}
-!8 = !{!7}
+!4 = !{!4, !5, !"another scope in dom1"}
; A list of scopes from both domains.
-!9 = !{!2, !4, !7}
+!0 = !{!1, !3, !4}
; CHECK: NoAlias: %0 = load float, float* %c, align 4, !alias.scope !0 <-> store float %0, float* %arrayidx.i, align 4, !noalias !6
; CHECK: NoAlias: %0 = load float, float* %c, align 4, !alias.scope !0 <-> store float %1, float* %arrayidx.i2, align 4, !noalias !6
More information about the llvm-commits
mailing list