[llvm] r350569 - [ValueTracking] Adjust comment in test
Michael Ferguson via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 7 13:02:23 PST 2019
Author: mppf
Date: Mon Jan 7 13:02:22 2019
New Revision: 350569
URL: http://llvm.org/viewvc/llvm-project?rev=350569&view=rev
Log:
[ValueTracking] Adjust comment in test
Adjusts a comment in this test to verify commit access.
Modified:
llvm/trunk/test/Analysis/ValueTracking/gep-negative-issue.ll
Modified: llvm/trunk/test/Analysis/ValueTracking/gep-negative-issue.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Analysis/ValueTracking/gep-negative-issue.ll?rev=350569&r1=350568&r2=350569&view=diff
==============================================================================
--- llvm/trunk/test/Analysis/ValueTracking/gep-negative-issue.ll (original)
+++ llvm/trunk/test/Analysis/ValueTracking/gep-negative-issue.ll Mon Jan 7 13:02:22 2019
@@ -19,7 +19,8 @@ entry:
%x2 = getelementptr inbounds %ArrayImpl, %ArrayImpl addrspace(100)* %x1, i32 0, i32 8
%x3 = load double addrspace(100)*, double addrspace(100)* addrspace(100)* %x2
%x4 = getelementptr inbounds double, double addrspace(100)* %x3, i64 -1
- ; Stores that should be to the same location
+ ; These two stores refer to the same memory location
+ ; Even so, they are expected to remain separate stores here
store double 0.000000e+00, double addrspace(100)* %4
store double 0.000000e+00, double addrspace(100)* %x4
; Third section is the repeated code again, with a later store
More information about the llvm-commits
mailing list