diff options
author | Adam Nemet <anemet@apple.com> | 2015-05-11 09:10:14 +0000 |
---|---|---|
committer | Adam Nemet <anemet@apple.com> | 2015-05-11 09:10:14 +0000 |
commit | 0fd96dddf503d31ed9773f380f3e9caab82eb9e7 (patch) | |
tree | d65c4db5317bed0393012e88532ab890ecd5220d | |
parent | 23fccde1b11240717b9fdab1cb3b40ab122dd698 (diff) | |
download | bcm5719-llvm-0fd96dddf503d31ed9773f380f3e9caab82eb9e7.tar.gz bcm5719-llvm-0fd96dddf503d31ed9773f380f3e9caab82eb9e7.zip |
[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
llvm-svn: 236981
-rw-r--r-- | llvm/test/Analysis/ScopedNoAliasAA/basic-domains.ll | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/llvm/test/Analysis/ScopedNoAliasAA/basic-domains.ll b/llvm/test/Analysis/ScopedNoAliasAA/basic-domains.ll index c2b5bbd4e06..2fea2ba068a 100644 --- a/llvm/test/Analysis/ScopedNoAliasAA/basic-domains.ll +++ b/llvm/test/Analysis/ScopedNoAliasAA/basic-domains.ll @@ -5,42 +5,40 @@ target triple = "x86_64-unknown-linux-gnu" 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 |