[llvm-commits] [llvm] r63561 - /llvm/trunk/test/CodeGen/X86/extractelement-load.ll
Dan Gohman
gohman at apple.com
Mon Feb 2 14:50:08 PST 2009
Author: djg
Date: Mon Feb 2 16:50:08 2009
New Revision: 63561
URL: http://llvm.org/viewvc/llvm-project?rev=63561&view=rev
Log:
Yonah does not support x86-64. Change the -mcpu value to one that does.
Modified:
llvm/trunk/test/CodeGen/X86/extractelement-load.ll
Modified: llvm/trunk/test/CodeGen/X86/extractelement-load.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/extractelement-load.ll?rev=63561&r1=63560&r2=63561&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/extractelement-load.ll (original)
+++ llvm/trunk/test/CodeGen/X86/extractelement-load.ll Mon Feb 2 16:50:08 2009
@@ -1,5 +1,5 @@
; RUN: llvm-as %s -o - | llc -march=x86 -mattr=+sse2 -mcpu=yonah | not grep movd
-; RUN: llvm-as %s -o - | llc -march=x86-64 -mattr=+sse2 -mcpu=yonah | not grep movd
+; RUN: llvm-as %s -o - | llc -march=x86-64 -mattr=+sse2 -mcpu=core2 | not grep movd
define i32 @t(<2 x i64>* %val) nounwind {
%tmp2 = load <2 x i64>* %val, align 16 ; <<2 x i64>> [#uses=1]
More information about the llvm-commits
mailing list