diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-31 19:22:24 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-31 19:22:24 +0000 |
commit | 823bdbc770ae027c7f07c90f201f44534da3ff4d (patch) | |
tree | 0b107c4966c34a3a8b6afe0a36a8a4309c921447 | |
parent | 4a260922489a244b205eb22bb71dcfa17acaabd3 (diff) | |
download | external_llvm-823bdbc770ae027c7f07c90f201f44534da3ff4d.zip external_llvm-823bdbc770ae027c7f07c90f201f44534da3ff4d.tar.gz external_llvm-823bdbc770ae027c7f07c90f201f44534da3ff4d.tar.bz2 |
Add missing colons for FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85674 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/ARM/long_shift.ll | 2 | ||||
-rw-r--r-- | test/CodeGen/Thumb2/thumb2-branch.ll | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/ARM/long_shift.ll b/test/CodeGen/ARM/long_shift.ll index 027c7c5..6dbd781 100644 --- a/test/CodeGen/ARM/long_shift.ll +++ b/test/CodeGen/ARM/long_shift.ll @@ -2,7 +2,7 @@ define i64 @f0(i64 %A, i64 %B) { ; CHECK: f0 -; CHECK rrx +; CHECK: rrx %tmp = bitcast i64 %A to i64 %tmp2 = lshr i64 %B, 1 %tmp3 = sub i64 %tmp, %tmp2 diff --git a/test/CodeGen/Thumb2/thumb2-branch.ll b/test/CodeGen/Thumb2/thumb2-branch.ll index b46cb5f..1fd3f12 100644 --- a/test/CodeGen/Thumb2/thumb2-branch.ll +++ b/test/CodeGen/Thumb2/thumb2-branch.ll @@ -3,7 +3,7 @@ define void @f1(i32 %a, i32 %b, i32* %v) { entry: ; CHECK: f1: -; CHECK bne LBB +; CHECK: bne LBB %tmp = icmp eq i32 %a, %b ; <i1> [#uses=1] br i1 %tmp, label %cond_true, label %return @@ -18,7 +18,7 @@ return: ; preds = %entry define void @f2(i32 %a, i32 %b, i32* %v) { entry: ; CHECK: f2: -; CHECK bge LBB +; CHECK: bge LBB %tmp = icmp slt i32 %a, %b ; <i1> [#uses=1] br i1 %tmp, label %cond_true, label %return @@ -33,7 +33,7 @@ return: ; preds = %entry define void @f3(i32 %a, i32 %b, i32* %v) { entry: ; CHECK: f3: -; CHECK bhs LBB +; CHECK: bhs LBB %tmp = icmp ult i32 %a, %b ; <i1> [#uses=1] br i1 %tmp, label %cond_true, label %return @@ -48,7 +48,7 @@ return: ; preds = %entry define void @f4(i32 %a, i32 %b, i32* %v) { entry: ; CHECK: f4: -; CHECK blo LBB +; CHECK: blo LBB %tmp = icmp ult i32 %a, %b ; <i1> [#uses=1] br i1 %tmp, label %return, label %cond_true |