[llvm] r230258 - [X86][MMX] Fix test to reflect current codegen

Bruno Cardoso Lopes bruno.cardoso at gmail.com
Mon Feb 23 12:57:46 PST 2015


Author: bruno
Date: Mon Feb 23 14:57:46 2015
New Revision: 230258

URL: http://llvm.org/viewvc/llvm-project?rev=230258&view=rev
Log:
[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.

Modified:
    llvm/trunk/test/CodeGen/X86/bitcast-mmx.ll

Modified: llvm/trunk/test/CodeGen/X86/bitcast-mmx.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/bitcast-mmx.ll?rev=230258&r1=230257&r2=230258&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/bitcast-mmx.ll (original)
+++ llvm/trunk/test/CodeGen/X86/bitcast-mmx.ll Mon Feb 23 14:57:46 2015
@@ -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:





More information about the llvm-commits mailing list