[llvm-commits] [llvm] r171083 - in /llvm/trunk/test/CodeGen/X86: 2008-05-22-FoldUnalignedLoad.ll sse-align-2.ll
NAKAMURA Takumi
geek4civic at gmail.com
Tue Dec 25 19:08:55 PST 2012
Author: chapuni
Date: Tue Dec 25 21:08:55 2012
New Revision: 171083
URL: http://llvm.org/viewvc/llvm-project?rev=171083&view=rev
Log:
llvm/test/CodeGen/X86: Disable avx in two tests corresponding to r171082.
Modified:
llvm/trunk/test/CodeGen/X86/2008-05-22-FoldUnalignedLoad.ll
llvm/trunk/test/CodeGen/X86/sse-align-2.ll
Modified: llvm/trunk/test/CodeGen/X86/2008-05-22-FoldUnalignedLoad.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2008-05-22-FoldUnalignedLoad.ll?rev=171083&r1=171082&r2=171083&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2008-05-22-FoldUnalignedLoad.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2008-05-22-FoldUnalignedLoad.ll Tue Dec 25 21:08:55 2012
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86 -mattr=+sse2 | grep movups | count 2
+; RUN: llc < %s -march=x86 -mcpu=penryn | grep movups | count 2
define void @a(<4 x float>* %x) nounwind {
entry:
Modified: llvm/trunk/test/CodeGen/X86/sse-align-2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/sse-align-2.ll?rev=171083&r1=171082&r2=171083&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/sse-align-2.ll (original)
+++ llvm/trunk/test/CodeGen/X86/sse-align-2.ll Tue Dec 25 21:08:55 2012
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86-64 | grep movup | count 2
+; RUN: llc < %s -march=x86-64 -mcpu=penryn | grep movup | count 2
define <4 x float> @foo(<4 x float>* %p, <4 x float> %x) nounwind {
%t = load <4 x float>* %p, align 4
More information about the llvm-commits
mailing list