diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-09-05 20:04:37 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-05 20:04:37 +0000 |
commit | cfad12871fd909ba447065663ea5e737f573ebad (patch) | |
tree | 40d71312399f3e8a6aea71cae0ac9b934efdbff2 | |
parent | 8a8980ec4bd58e7e75d364a1144b94343828e32a (diff) | |
download | external_llvm-cfad12871fd909ba447065663ea5e737f573ebad.zip external_llvm-cfad12871fd909ba447065663ea5e737f573ebad.tar.gz external_llvm-cfad12871fd909ba447065663ea5e737f573ebad.tar.bz2 |
Fix test.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55849 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/fastcc.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/fastcc.ll b/test/CodeGen/X86/fastcc.ll index 07af805..f18f34de 100644 --- a/test/CodeGen/X86/fastcc.ll +++ b/test/CodeGen/X86/fastcc.ll @@ -1,5 +1,5 @@ -; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin | grep mov | grep ecx | grep 0 -; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin | grep mov | grep xmm0 | grep 8 +; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin -mattr=+sse2 | grep mov | grep ecx | grep 0 +; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin -mattr=+sse2 | grep mov | grep xmm0 | grep 8 @d = external global double ; <double*> [#uses=1] @c = external global double ; <double*> [#uses=1] |