From beb74d3cf7bc3a65cde81f85e9b8a1499a051200 Mon Sep 17 00:00:00 2001 From: Adam Nemet Date: Mon, 11 May 2015 09:10:14 +0000 Subject: [PATCH] [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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236981 91177308-0d34-0410-b5e6-96231b3b80d8 --- .../Analysis/ScopedNoAliasAA/basic-domains.ll | 24 +++++++++---------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/test/Analysis/ScopedNoAliasAA/basic-domains.ll b/test/Analysis/ScopedNoAliasAA/basic-domains.ll index c2b5bbd4e06..2fea2ba068a 100644 --- a/test/Analysis/ScopedNoAliasAA/basic-domains.ll +++ b/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 -- 2.34.1