[llvm] r329511 - [X86] Regenerate atom pshufb test
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sat Apr 7 12:50:10 PDT 2018
Author: rksimon
Date: Sat Apr 7 12:50:09 2018
New Revision: 329511
URL: http://llvm.org/viewvc/llvm-project?rev=329511&view=rev
Log:
[X86] Regenerate atom pshufb test
Modified:
llvm/trunk/test/CodeGen/X86/atom-shuf.ll
Modified: llvm/trunk/test/CodeGen/X86/atom-shuf.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/atom-shuf.ll?rev=329511&r1=329510&r2=329511&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/atom-shuf.ll (original)
+++ llvm/trunk/test/CodeGen/X86/atom-shuf.ll Sat Apr 7 12:50:09 2018
@@ -1,9 +1,11 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc < %s -mtriple=x86_64-linux-pc -mcpu=atom | FileCheck %s
define <16 x i8> @foo(<16 x i8> %in) {
+; CHECK-LABEL: foo:
+; CHECK: # %bb.0:
+; CHECK-NEXT: pshufb {{.*#+}} xmm0 = xmm0[7,3,2,11,u,u,u,u,u,u,u,u,u,u,u,u]
+; CHECK-NEXT: retq
%r = shufflevector <16 x i8> %in, <16 x i8> undef, <16 x i32> < i32 7, i32 3, i32 2, i32 11, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef, i32 undef>
ret <16 x i8> %r
-; CHECK: foo
-; CHECK: pshufb
-; CHECK-NEXT: ret
}
More information about the llvm-commits
mailing list