Skip to content

Commit

Permalink
Add missing colons to check lines.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179277 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
d0k committed Apr 11, 2013
1 parent 8f6f47e commit 8e708d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/CodeGen/ARM/avoid-cpsr-rmw.ll
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/Instrumentation/ThreadSanitizer/tsan_basic.ll
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
4 changes: 2 additions & 2 deletions test/Transforms/InstSimplify/floating-point-arithmetic.ll
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ 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
}

; fadd X, -0 ==> X
; 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
}

Expand Down

0 comments on commit 8e708d3

Please sign in to comment.