diff options
author | Quentin Colombet <qcolombet@apple.com> | 2013-10-11 18:54:49 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2013-10-11 18:54:49 +0000 |
commit | 8c15b60ffe5baf339b7a41b97834a087fe5a4b4a (patch) | |
tree | 87b7b946daea7bbc53f0bb235fcbf1f36d3f87ca /test | |
parent | f02062f8896cfb6b684320fc8248d0e5c96035b3 (diff) | |
download | external_llvm-8c15b60ffe5baf339b7a41b97834a087fe5a4b4a.zip external_llvm-8c15b60ffe5baf339b7a41b97834a087fe5a4b4a.tar.gz external_llvm-8c15b60ffe5baf339b7a41b97834a087fe5a4b4a.tar.bz2 |
[DAGCombiner] Load slicing test case: attempt to really fix the buildbots (used sse4.2 instead of avx!).
<rdar://problem/14477220>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192480 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 8086def..4355e3d 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=+sse4.2 -combiner-stress-load-slicing < %s -o - | FileCheck %s --check-prefix=STRESS -; RUN: llc -mtriple x86_64-apple-macosx -mattr=+sse4.2 < %s -o - | FileCheck %s --check-prefix=REGULAR +; 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 ; ; <rdar://problem/14477220> |