diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-06-23 06:16:31 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-06-23 06:16:31 +0000 |
commit | 04eeefb32a3ae7de4cde1908d30bff61e0d6b86e (patch) | |
tree | 0622ff8b029e102900a614a6d53ebf98a4e00668 /test/CodeGen | |
parent | ae18bd4246da4d2ac9494bbaeadd40abfa533c83 (diff) | |
download | external_llvm-04eeefb32a3ae7de4cde1908d30bff61e0d6b86e.zip external_llvm-04eeefb32a3ae7de4cde1908d30bff61e0d6b86e.tar.gz external_llvm-04eeefb32a3ae7de4cde1908d30bff61e0d6b86e.tar.bz2 |
Make test work on non-x86 machines (like my G4 PPC).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52619 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen')
-rw-r--r-- | test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll b/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll index 8a81a33..2b64212 100644 --- a/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll +++ b/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll @@ -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] |