From d7531468dd8a95dfab7821c97969b61529434f58 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sat, 7 Apr 2018 19:50:09 +0000 Subject: [PATCH] [X86] Regenerate atom pshufb test llvm-svn: 329511 --- test/CodeGen/X86/atom-shuf.ll | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/CodeGen/X86/atom-shuf.ll b/test/CodeGen/X86/atom-shuf.ll index 4c3f2f67c54..7e1094abf1f 100644 --- a/test/CodeGen/X86/atom-shuf.ll +++ b/test/CodeGen/X86/atom-shuf.ll @@ -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 }