diff options
| author | Sanjay Patel <spatel@rotateright.com> | 2015-02-17 21:59:54 +0000 |
|---|---|---|
| committer | Sanjay Patel <spatel@rotateright.com> | 2015-02-17 21:59:54 +0000 |
| commit | 5562c554f0778771226f1398d89ab15effd55bce (patch) | |
| tree | 3f78da3bd8125d77a4b20d635c966735e8657d8a | |
| parent | 6fec509ac7b03d450176a0931e8a9b9409e5bad2 (diff) | |
| download | bcm5719-llvm-5562c554f0778771226f1398d89ab15effd55bce.tar.gz bcm5719-llvm-5562c554f0778771226f1398d89ab15effd55bce.zip | |
use a triple instead of a cpu; less builbot sadness
llvm-svn: 229563
| -rw-r--r-- | llvm/test/CodeGen/X86/logical-load-fold.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/logical-load-fold.ll b/llvm/test/CodeGen/X86/logical-load-fold.ll index fa6b9e5000c..5aac2d7910c 100644 --- a/llvm/test/CodeGen/X86/logical-load-fold.ll +++ b/llvm/test/CodeGen/X86/logical-load-fold.ll @@ -1,5 +1,5 @@ -; RUN: llc < %s -mcpu=x86-64 -mattr=sse2,sse-unaligned-mem | FileCheck %s --check-prefix=SSE2 -; RUN: llc < %s -mcpu=x86-64 -mattr=avx | FileCheck %s --check-prefix=AVX +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=sse2,sse-unaligned-mem | FileCheck %s --check-prefix=SSE2 +; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=avx | FileCheck %s --check-prefix=AVX ; Although we have the ability to fold an unaligned load with AVX ; and under special conditions with some SSE implementations, we |

