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/X86/machine-cp.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/X86/machine-cp.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/machine-cp.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/machine-cp.ll b/llvm/test/CodeGen/X86/machine-cp.ll index aaed0f0a23d..768b9cab6f6 100644 --- a/llvm/test/CodeGen/X86/machine-cp.ll +++ b/llvm/test/CodeGen/X86/machine-cp.ll @@ -83,12 +83,12 @@ while.end: ; preds = %while.body, %entry ; CHECK-NOT: , [[CPY1]] ; CHECK: punpcklbw [[CPY2]], [[CPY2]] ; CHECK-NEXT: punpckhwd [[CPY2]], [[CPY2]] -; CHECK-NEXT pslld $31, [[CPY2]] +; CHECK-NEXT: pslld $31, [[CPY2]] ; Check that CPY1 is not redefined. ; CHECK-NOT: , [[CPY1]] ; CHECK: punpcklbw [[CPY1]], [[CPY1]] ; CHECK-NEXT: punpcklwd [[CPY1]], [[CPY1]] -; CHECK-NEXT pslld $31, [[CPY1]] +; CHECK-NEXT: pslld $31, [[CPY1]] define <16 x float> @foo(<16 x float> %x) { bb: %v3 = icmp slt <16 x i32> undef, zeroinitializer |