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 | 559067c55cadfc8ed58ac0fce13e26c1b33e4536 (patch) | |
tree | c67f7668b82b0ad215c66543ca9bb2097d137975 | |
parent | 00fdbd01e50394091ff589475e38297b18559aef (diff) | |
download | bcm5719-llvm-559067c55cadfc8ed58ac0fce13e26c1b33e4536.tar.gz bcm5719-llvm-559067c55cadfc8ed58ac0fce13e26c1b33e4536.zip |
Make test work on non-x86 machines (like my G4 PPC).
llvm-svn: 52619
-rw-r--r-- | llvm/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll b/llvm/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll index 8a81a334cf3..2b64212dfb8 100644 --- a/llvm/test/CodeGen/X86/2008-06-13-VolatileLoadStore.ll +++ b/llvm/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] |