From a7db376a63e56f2347cdd3a72e1823f238c70630 Mon Sep 17 00:00:00 2001 From: Bruno Cardoso Lopes Date: Mon, 23 Feb 2015 20:57:46 +0000 Subject: [PATCH] [X86][MMX] Fix test to reflect current codegen This test failed in several buildbots, a bit unclear how that happen since this was the previous behavior before r230248. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230258 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/bitcast-mmx.ll | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/CodeGen/X86/bitcast-mmx.ll b/test/CodeGen/X86/bitcast-mmx.ll index 616b21fca04..0f2c21a7e44 100644 --- a/test/CodeGen/X86/bitcast-mmx.ll +++ b/test/CodeGen/X86/bitcast-mmx.ll @@ -59,8 +59,7 @@ define i64 @t3(<1 x i64>* %y, i32* %n) { ; CHECK-LABEL: t3: ; CHECK: ## BB#0: ## %entry ; CHECK-NEXT: movq (%rdi), %mm0 -; CHECK-NEXT: movd (%rsi), %mm1 -; CHECK-NEXT: psllq %mm1, %mm0 +; CHECK-NEXT: psllq (%rsi), %mm0 ; CHECK-NEXT: movd %mm0, %rax ; CHECK-NEXT: retq entry: -- 2.34.1