diff options
author | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-08-10 19:01:27 +0000 |
---|---|---|
committer | Jonathan Roelofs <jonathan@codesourcery.com> | 2015-08-10 19:01:27 +0000 |
commit | 49e46ce8e2fbf7952d46aaee1955a0e00b15d175 (patch) | |
tree | 8612d68e097c120d240686eb052990deac86848c /llvm/test/CodeGen/PowerPC/vec_add_sub_quadword.ll | |
parent | fc2b6fa31c11989e4a9ec41d785d9f92e5766d93 (diff) | |
download | bcm5719-llvm-49e46ce8e2fbf7952d46aaee1955a0e00b15d175.tar.gz bcm5719-llvm-49e46ce8e2fbf7952d46aaee1955a0e00b15d175.zip |
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.
llvm-svn: 244481
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/vec_add_sub_quadword.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/vec_add_sub_quadword.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/PowerPC/vec_add_sub_quadword.ll b/llvm/test/CodeGen/PowerPC/vec_add_sub_quadword.ll index f7ebf479755..9e79b52c404 100644 --- a/llvm/test/CodeGen/PowerPC/vec_add_sub_quadword.ll +++ b/llvm/test/CodeGen/PowerPC/vec_add_sub_quadword.ll @@ -14,7 +14,7 @@ define <1 x i128> @increment_by_one(<1 x i128> %x) nounwind { %result = add <1 x i128> %x, <i128 1> ret <1 x i128> %result ; CHECK-LABEL: @increment_by_one -; CHECK vadduqm 2, 2, 3 +; CHECK: vadduqm 2, 2, 3 } define <1 x i128> @increment_by_val(<1 x i128> %x, i128 %val) nounwind { @@ -37,7 +37,7 @@ define <1 x i128> @decrement_by_one(<1 x i128> %x) nounwind { %result = sub <1 x i128> %x, <i128 1> ret <1 x i128> %result ; CHECK-LABEL: @decrement_by_one -; CHECK vsubuqm 2, 2, 3 +; CHECK: vsubuqm 2, 2, 3 } define <1 x i128> @decrement_by_val(<1 x i128> %x, i128 %val) nounwind { @@ -46,7 +46,7 @@ define <1 x i128> @decrement_by_val(<1 x i128> %x, i128 %val) nounwind { %result = sub <1 x i128> %x, %tmpvec2 ret <1 x i128> %result ; CHECK-LABEL: @decrement_by_val -; CHECK vsubuqm 2, 2, 3 +; CHECK: vsubuqm 2, 2, 3 } declare <1 x i128> @llvm.ppc.altivec.vaddeuqm(<1 x i128> %x, |