Fix a few more cases of 'CHECK[^:]*$'. NFCI
authorJonathan Roelofs <jonathan@codesourcery.com>
Mon, 10 Aug 2015 19:56:39 +0000 (19:56 +0000)
committerJonathan Roelofs <jonathan@codesourcery.com>
Mon, 10 Aug 2015 19:56:39 +0000 (19:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244491 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/tailcall-mem-intrinsics.ll
test/Transforms/InstCombine/bswap-fold.ll

index 0e0ab5c478fc11dd37b8ab757fc1e6e084f44958..8e1e4f464baa912a567ba5351356b270388d43d7 100644 (file)
@@ -8,8 +8,8 @@ entry:
   ret void
 }
 
-; CHECK-LABEL: tail_memset
-; CHECK; jmp memmove
+; CHECK-LABEL: tail_memmove
+; CHECK: jmp memmove
 define void @tail_memmove(i8* nocapture %p, i8* nocapture readonly %q, i32 %n) #0 {
 entry:
   tail call void @llvm.memmove.p0i8.p0i8.i32(i8* %p, i8* %q, i32 %n, i32 1, i1 false)
index 63b0775e4aff2c8acc7d1b4ea432fb26476323d3..edf9572f1e1128c64d1b984a9117e72590feacd7 100644 (file)
@@ -51,7 +51,7 @@ define i32 @test5(i32 %a) nounwind {
 define i32 @test6(i32 %a) nounwind {
 ; CHECK-LABEL: @test6
 ; CHECK-NEXT:  %tmp2 = lshr i32 %a, 24
-; CHECK-NEXT   ret i32 %tmp4
+; CHECK-NEXT:  ret i32 %tmp2
        %tmp2 = tail call i32 @llvm.bswap.i32( i32 %a )
        %tmp4 = and i32 %tmp2, 255
        ret i32 %tmp4
@@ -62,7 +62,7 @@ define i16 @test7(i32 %A) {
 ; CHECK-LABEL: @test7
 ; CHECK-NEXT:  %1 = lshr i32 %A, 16
 ; CHECK-NEXT:  %D = trunc i32 %1 to i16
-; CHECK-NEXT   ret i16 %D
+; CHECK-NEXT:  ret i16 %D
   %B = tail call i32 @llvm.bswap.i32(i32 %A) nounwind
   %C = trunc i32 %B to i16
   %D = tail call i16 @llvm.bswap.i16(i16 %C) nounwind
@@ -73,7 +73,7 @@ define i16 @test8(i64 %A) {
 ; CHECK-LABEL: @test8
 ; CHECK-NEXT:  %1 = lshr i64 %A, 48
 ; CHECK-NEXT:  %D = trunc i64 %1 to i16
-; CHECK-NEXT   ret i16 %D
+; CHECK-NEXT:  ret i16 %D
   %B = tail call i64 @llvm.bswap.i64(i64 %A) nounwind 
   %C = trunc i64 %B to i16
   %D = tail call i16 @llvm.bswap.i16(i16 %C) nounwind