[PATCH] D16670: [ScopedNoAliasAA] Make test basic.ll less confusing
Adam Nemet via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 7 09:54:03 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL262841: [ScopedNoAliasAA] Make test basic.ll less confusing (authored by anemet).
Changed prior to commit:
http://reviews.llvm.org/D16670?vs=46213&id=49975#toc
Repository:
rL LLVM
http://reviews.llvm.org/D16670
Files:
llvm/trunk/test/Analysis/ScopedNoAliasAA/basic.ll
Index: llvm/trunk/test/Analysis/ScopedNoAliasAA/basic.ll
===================================================================
--- llvm/trunk/test/Analysis/ScopedNoAliasAA/basic.ll
+++ llvm/trunk/test/Analysis/ScopedNoAliasAA/basic.ll
@@ -6,9 +6,9 @@
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 !1
+ %0 = load float, float* %c, align 4, !alias.scope !2
%arrayidx.i = getelementptr inbounds float, float* %a, i64 5
- store float %0, float* %arrayidx.i, align 4, !noalias !1
+ store float %0, float* %arrayidx.i, align 4, !noalias !2
%1 = load float, float* %c, align 4
%arrayidx = getelementptr inbounds float, float* %a, i64 7
store float %1, float* %arrayidx, align 4
@@ -25,4 +25,4 @@
!0 = !{!0, !"some domain"}
!1 = !{!1, !0, !"some scope"}
-
+!2 = !{!1}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D16670.49975.patch
Type: text/x-patch
Size: 898 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160307/b0ef3e9b/attachment.bin>
More information about the llvm-commits
mailing list