summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/rm-zext.ll
diff options
context:
space:
mode:
authorJonathan Roelofs <jonathan@codesourcery.com>2015-08-10 19:01:27 +0000
committerJonathan Roelofs <jonathan@codesourcery.com>2015-08-10 19:01:27 +0000
commit993a1116f7d9be88e30e020904ea0f6c7524a512 (patch)
treeeef769ddb353823d7096fd4bcda2ae4d9e85b5c2 /test/CodeGen/PowerPC/rm-zext.ll
parentc505e6df7a9cbbfea042f395440206698d0f8a96 (diff)
Fix a bunch of trivial cases of 'CHECK[^:]*$' in the tests. NFCI
I looked into adding a warning / error for this to FileCheck, but there doesn't seem to be a good way to avoid it triggering on the instances of it in RUN lines. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/rm-zext.ll')
-rw-r--r--test/CodeGen/PowerPC/rm-zext.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/PowerPC/rm-zext.ll b/test/CodeGen/PowerPC/rm-zext.ll
index 97c546c0145..df5fe4f7a15 100644
--- a/test/CodeGen/PowerPC/rm-zext.ll
+++ b/test/CodeGen/PowerPC/rm-zext.ll
@@ -9,7 +9,7 @@ entry:
%shr2 = lshr i32 %mul, 5
ret i32 %shr2
-; CHECK-LABEL @foo
+; CHECK-LABEL: @foo
; CHECK-NOT: rldicl 3, {{[0-9]+}}, 0, 32
; CHECK: blr
}
@@ -23,7 +23,7 @@ entry:
%or = or i32 %shr, %shl
ret i32 %or
-; CHECK-LABEL @test6
+; CHECK-LABEL: @test6
; CHECK-NOT: rldicl 3, {{[0-9]+}}, 0, 32
; CHECK: blr
}
@@ -34,7 +34,7 @@ entry:
%cond = select i1 %cmp, i32 %a, i32 %b
ret i32 %cond
-; CHECK-LABEL @min
+; CHECK-LABEL: @min
; CHECK-NOT: rldicl 3, {{[0-9]+}}, 0, 32
; CHECK: blr
}