[llvm-commits] [llvm] r48156 - /llvm/trunk/test/CodeGen/X86/prefetch.ll

Dale Johannesen dalej at apple.com
Mon Mar 10 10:13:37 PDT 2008


Author: johannes
Date: Mon Mar 10 12:13:37 2008
New Revision: 48156

URL: http://llvm.org/viewvc/llvm-project?rev=48156&view=rev
Log:
There is no "-mattr=+sse1" flag; fix test for non-x86 hosts.


Modified:
    llvm/trunk/test/CodeGen/X86/prefetch.ll

Modified: llvm/trunk/test/CodeGen/X86/prefetch.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/prefetch.ll?rev=48156&r1=48155&r2=48156&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/prefetch.ll (original)
+++ llvm/trunk/test/CodeGen/X86/prefetch.ll Mon Mar 10 12:13:37 2008
@@ -1,7 +1,7 @@
-; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse1 | grep prefetchnta
-; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse1 | grep prefetcht0
-; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse1 | grep prefetcht1
-; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse1 | grep prefetcht2
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse | grep prefetchnta
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse | grep prefetcht0
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse | grep prefetcht1
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse | grep prefetcht2
 
 define void @t(i8* %ptr) nounwind  {
 entry:





More information about the llvm-commits mailing list