Index: llvm/trunk/test/Analysis/ScopedNoAliasAA/basic-domains.ll =================================================================== --- llvm/trunk/test/Analysis/ScopedNoAliasAA/basic-domains.ll +++ llvm/trunk/test/Analysis/ScopedNoAliasAA/basic-domains.ll @@ -5,42 +5,40 @@ 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