OSDN Git Service

[ValueTracking] Correct lit test comments. NFC.
authorChad Rosier <mcrosier@codeaurora.org>
Mon, 18 Apr 2016 19:11:45 +0000 (19:11 +0000)
committerChad Rosier <mcrosier@codeaurora.org>
Mon, 18 Apr 2016 19:11:45 +0000 (19:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@266657 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstSimplify/implies.ll

index 2375965..56e1e6a 100644 (file)
@@ -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