diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-04-01 08:25:26 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-04-01 08:25:26 +0000 |
commit | 0bf77de91fa3663b3bc189624569e2ff9a714f43 (patch) | |
tree | 8f3e1f41ac6f5ea09c08e45967f467200a6deb78 /test/CodeGen/X86/memset64-on-x86-32.ll | |
parent | c8b82ccbcf3b2e2384d2c0b5176e7b0b40b7f82f (diff) |
Add -mcpu to memcpy / memset tests to ensure they behave the same on all hosts / targets.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100101 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/memset64-on-x86-32.ll')
-rw-r--r-- | test/CodeGen/X86/memset64-on-x86-32.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/CodeGen/X86/memset64-on-x86-32.ll b/test/CodeGen/X86/memset64-on-x86-32.ll index 8b817b49eec..c0cd271d985 100644 --- a/test/CodeGen/X86/memset64-on-x86-32.ll +++ b/test/CodeGen/X86/memset64-on-x86-32.ll @@ -1,5 +1,6 @@ -; RUN: llc < %s -mtriple=i386-apple-darwin | grep movl | count 20 -; RUN: llc < %s -mtriple=x86_64-apple-darwin | grep movq | count 10 +; RUN: llc < %s -mtriple=i386-apple-darwin -mcpu=nehalem | grep movaps | count 5 +; RUN: llc < %s -mtriple=i386-apple-darwin -mcpu=core2 | grep movl | count 20 +; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=core2 | grep movq | count 10 define void @bork() nounwind { entry: |