[llvm] r179277 - Add missing colons to check lines.
Benjamin Kramer
benny.kra at googlemail.com
Thu Apr 11 05:41:41 PDT 2013
Author: d0k
Date: Thu Apr 11 07:41:41 2013
New Revision: 179277
URL: http://llvm.org/viewvc/llvm-project?rev=179277&view=rev
Log:
Add missing colons to check lines.
Modified:
llvm/trunk/test/CodeGen/ARM/avoid-cpsr-rmw.ll
llvm/trunk/test/Instrumentation/ThreadSanitizer/tsan_basic.ll
llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll
Modified: llvm/trunk/test/CodeGen/ARM/avoid-cpsr-rmw.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/avoid-cpsr-rmw.ll?rev=179277&r1=179276&r2=179277&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/avoid-cpsr-rmw.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/avoid-cpsr-rmw.ll Thu Apr 11 07:41:41 2013
@@ -91,7 +91,7 @@ entry:
; CHECK: t4
; CHECK: vmrs APSR_nzcv, fpscr
; CHECK: if.then
-; CHECK-NOT movs
+; CHECK-NOT: movs
%0 = load double* %q, align 4
%cmp = fcmp olt double %0, 1.000000e+01
%incdec.ptr1 = getelementptr inbounds i32* %p, i32 1
Modified: llvm/trunk/test/Instrumentation/ThreadSanitizer/tsan_basic.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Instrumentation/ThreadSanitizer/tsan_basic.ll?rev=179277&r1=179276&r2=179277&view=diff
==============================================================================
--- llvm/trunk/test/Instrumentation/ThreadSanitizer/tsan_basic.ll (original)
+++ llvm/trunk/test/Instrumentation/ThreadSanitizer/tsan_basic.ll Thu Apr 11 07:41:41 2013
@@ -49,7 +49,7 @@ define void @MemSetTest(i8* nocapture %x
entry:
tail call void @llvm.memset.p0i8.i64(i8* %x, i8 77, i64 16, i32 4, i1 false)
ret void
-; CHECK define void @MemSetTest
+; CHECK: define void @MemSetTest
; CHECK: call i8* @memset
; CHECK: ret void
}
Modified: llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll?rev=179277&r1=179276&r2=179277&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll (original)
+++ llvm/trunk/test/Transforms/InstSimplify/floating-point-arithmetic.ll Thu Apr 11 07:41:41 2013
@@ -14,7 +14,7 @@ define float @fsub_0_0_x(float %a) {
; CHECK: @fsub_x_0
define float @fsub_x_0(float %a) {
%ret = fsub float %a, 0.0
-; CHECK ret float %a
+; CHECK: ret float %a
ret float %ret
}
@@ -22,7 +22,7 @@ define float @fsub_x_0(float %a) {
; CHECK: @fadd_x_n0
define float @fadd_x_n0(float %a) {
%ret = fadd float %a, -0.0
-; CHECK ret float %a
+; CHECK: ret float %a
ret float %ret
}
More information about the llvm-commits
mailing list