diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-10-12 11:17:12 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-10-12 11:17:12 +0000 |
commit | 18de809b0c8bb2e608b2e8cef5059480d3e24b9b (patch) | |
tree | 7c716d4d299797eace8e022d9c2ed5337dd347b7 /test | |
parent | d36e6444aa6ce155dcb8479609cc12c81c5fa166 (diff) | |
download | external_llvm-18de809b0c8bb2e608b2e8cef5059480d3e24b9b.zip external_llvm-18de809b0c8bb2e608b2e8cef5059480d3e24b9b.tar.gz external_llvm-18de809b0c8bb2e608b2e8cef5059480d3e24b9b.tar.bz2 |
Force a CPU on test so it doesn't depend on microarchitectural scheduling decisions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192532 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/load-slice.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/load-slice.ll b/test/CodeGen/X86/load-slice.ll index 4355e3d..b1f778c 100644 --- a/test/CodeGen/X86/load-slice.ll +++ b/test/CodeGen/X86/load-slice.ll @@ -1,5 +1,5 @@ -; RUN: llc -mtriple x86_64-apple-macosx -mattr=+avx -combiner-stress-load-slicing < %s -o - | FileCheck %s --check-prefix=STRESS -; RUN: llc -mtriple x86_64-apple-macosx -mattr=+avx < %s -o - | FileCheck %s --check-prefix=REGULAR +; RUN: llc -mtriple x86_64-apple-macosx -mcpu=corei7-avx -combiner-stress-load-slicing < %s -o - | FileCheck %s --check-prefix=STRESS +; RUN: llc -mtriple x86_64-apple-macosx -mcpu=corei7-avx < %s -o - | FileCheck %s --check-prefix=REGULAR ; ; <rdar://problem/14477220> |