diff options
author | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-08-10 19:56:39 +0000 |
---|---|---|
committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-08-10 19:56:39 +0000 |
commit | f45295c366ba8058c3861d00f20e08fa9d1d4fc0 (patch) | |
tree | aeeb49397c1ce70953137f2a72ccc23e67ac4991 | |
parent | 00a5d21803f87a83c83f5b37c5027b958ee4bfb7 (diff) | |
download | bcm5719-llvm-f45295c366ba8058c3861d00f20e08fa9d1d4fc0.tar.gz bcm5719-llvm-f45295c366ba8058c3861d00f20e08fa9d1d4fc0.zip |
Fix a few more cases of 'CHECK[^:]*$'. NFCI
llvm-svn: 244491
-rw-r--r-- | llvm/test/CodeGen/X86/tailcall-mem-intrinsics.ll | 4 | ||||
-rw-r--r-- | llvm/test/Transforms/InstCombine/bswap-fold.ll | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/llvm/test/CodeGen/X86/tailcall-mem-intrinsics.ll b/llvm/test/CodeGen/X86/tailcall-mem-intrinsics.ll index 0e0ab5c478f..8e1e4f464ba 100644 --- a/llvm/test/CodeGen/X86/tailcall-mem-intrinsics.ll +++ b/llvm/test/CodeGen/X86/tailcall-mem-intrinsics.ll @@ -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) diff --git a/llvm/test/Transforms/InstCombine/bswap-fold.ll b/llvm/test/Transforms/InstCombine/bswap-fold.ll index 63b0775e4af..edf9572f1e1 100644 --- a/llvm/test/Transforms/InstCombine/bswap-fold.ll +++ b/llvm/test/Transforms/InstCombine/bswap-fold.ll @@ -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 |