diff options
author | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2015-03-14 01:43:57 +0000 |
---|---|---|
committer | Ahmed Bougacha <ahmed.bougacha@gmail.com> | 2015-03-14 01:43:57 +0000 |
commit | 082c5c707a1a3a42c1d1b4c1a1dbd9139463cd3e (patch) | |
tree | 0e2ea5e6691e18e04bd8b0e6658447de21004bb7 /llvm/test/CodeGen/PowerPC | |
parent | ca1c7793b17aa290c6f2af6b50f523a53cec8fbe (diff) | |
download | bcm5719-llvm-082c5c707a1a3a42c1d1b4c1a1dbd9139463cd3e.tar.gz bcm5719-llvm-082c5c707a1a3a42c1d1b4c1a1dbd9139463cd3e.zip |
Add a bunch of CHECK missing colons in tests. NFC.
Some wouldn't pass; fixed most, the rest will be fixed separately.
llvm-svn: 232239
Diffstat (limited to 'llvm/test/CodeGen/PowerPC')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/vec_add_sub_doubleword.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/PowerPC/vec_add_sub_doubleword.ll b/llvm/test/CodeGen/PowerPC/vec_add_sub_doubleword.ll index 013e16e2a73..6b41141163a 100644 --- a/llvm/test/CodeGen/PowerPC/vec_add_sub_doubleword.ll +++ b/llvm/test/CodeGen/PowerPC/vec_add_sub_doubleword.ll @@ -12,7 +12,7 @@ define <2 x i64> @test_add(<2 x i64> %x, <2 x i64> %y) nounwind { define <2 x i64> @increment_by_one(<2 x i64> %x) nounwind { %result = add <2 x i64> %x, <i64 1, i64 1> ret <2 x i64> %result -; CHECK vaddudm 2, 2, 3 +; CHECK: vaddudm 2, 2, 3 } define <2 x i64> @increment_by_val(<2 x i64> %x, i64 %val) nounwind { @@ -47,7 +47,7 @@ define <2 x i64> @test_sub(<2 x i64> %x, <2 x i64> %y) nounwind { define <2 x i64> @decrement_by_one(<2 x i64> %x) nounwind { %result = sub <2 x i64> %x, <i64 -1, i64 -1> ret <2 x i64> %result -; CHECK vsubudm 2, 2, 3 +; CHECK: vsubudm 2, 2, 3 } define <2 x i64> @decrement_by_val(<2 x i64> %x, i64 %val) nounwind { @@ -55,7 +55,7 @@ define <2 x i64> @decrement_by_val(<2 x i64> %x, i64 %val) nounwind { %tmpvec2 = insertelement <2 x i64> %tmpvec, i64 %val, i32 1 %result = sub <2 x i64> %x, %tmpvec2 ret <2 x i64> %result -; CHECK vsubudm 2, 2, 3 +; CHECK: vsubudm 2, 2, 3 } |