[llvm-commits] [llvm] r52619 - /llvm/trunk/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll

Bill Wendling isanbard at gmail.com
Sun Jun 22 23:16:31 PDT 2008


Author: void
Date: Mon Jun 23 01:16:31 2008
New Revision: 52619

URL: http://llvm.org/viewvc/llvm-project?rev=52619&view=rev
Log:
Make test work on non-x86 machines (like my G4 PPC).

Modified:
    llvm/trunk/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll

Modified: llvm/trunk/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll?rev=52619&r1=52618&r2=52619&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll Mon Jun 23 01:16:31 2008
@@ -1,5 +1,5 @@
-; RUN: llvm-as < %s | llc -march=x86 | grep movsd | count 5
-; RUN: llvm-as < %s | llc -march=x86 | grep movl | count 2
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movsd | count 5
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movl | count 2
 
 @atomic = global double 0.000000e+00		; <double*> [#uses=1]
 @atomic2 = global double 0.000000e+00		; <double*> [#uses=1]





More information about the llvm-commits mailing list