[llvm] r266657 - [ValueTracking] Correct lit test comments. NFC.
Chad Rosier via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 18 12:11:46 PDT 2016
Author: mcrosier
Date: Mon Apr 18 14:11:45 2016
New Revision: 266657
URL: http://llvm.org/viewvc/llvm-project?rev=266657&view=rev
Log:
[ValueTracking] Correct lit test comments. NFC.
Modified:
llvm/trunk/test/Transforms/InstSimplify/implies.ll
Modified: llvm/trunk/test/Transforms/InstSimplify/implies.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstSimplify/implies.ll?rev=266657&r1=266656&r2=266657&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstSimplify/implies.ll (original)
+++ llvm/trunk/test/Transforms/InstSimplify/implies.ll Mon Apr 18 14:11:45 2016
@@ -128,7 +128,7 @@ define i1 @test7(i32 %length.i, i32 %i)
ret i1 %res
}
-; i +_{nuw} 1 <s L ==> i < L +_{nuw} 1
+; i +_{nuw} 1 <u L ==> i < L +_{nuw} 1
define i1 @test8(i32 %length.i, i32 %i) {
; CHECK-LABEL: @test8(
; CHECK: ret i1 true
@@ -141,7 +141,7 @@ define i1 @test8(i32 %length.i, i32 %i)
ret i1 %res
}
-; i +_{nuw} C <s L ==> i < L, even if C is negative
+; i +_{nuw} C <u L ==> i < L, even if C is negative
define i1 @test9(i32 %length.i, i32 %i) {
; CHECK-LABEL: @test9(
; CHECK: ret i1 true
More information about the llvm-commits
mailing list