diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-11-22 02:28:04 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-11-22 02:28:04 +0000 |
| commit | 08be5afea4c8a551ed385756c4028c9a3c1b961c (patch) | |
| tree | 33b12de1a5ca4c72b18269b5bfd406aa61007126 /llvm/test | |
| parent | 79a2b0a6d16734ffa74496b2231bd417350999c2 (diff) | |
| download | bcm5719-llvm-08be5afea4c8a551ed385756c4028c9a3c1b961c.tar.gz bcm5719-llvm-08be5afea4c8a551ed385756c4028c9a3c1b961c.zip | |
Tweak 3 tests in llvm/test/CodeGen/X86 to add -mcpu=generic since r195383.
They failed on bdver2 buildslave.
FIXME: FileCheck-ize them.
llvm-svn: 195407
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/rot16.ll | 2 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/shift-double.ll | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll b/llvm/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll index d906da43fe1..1b3fc382e89 100644 --- a/llvm/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll +++ b/llvm/test/CodeGen/X86/2006-01-19-ISelFoldingBug.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86 | \ +; RUN: llc < %s -march=x86 -mcpu=generic | \ ; RUN: grep shld | count 1 ; ; Check that the isel does not fold the shld, which already folds a load diff --git a/llvm/test/CodeGen/X86/rot16.ll b/llvm/test/CodeGen/X86/rot16.ll index 0293f4e2112..6d7c702afc4 100644 --- a/llvm/test/CodeGen/X86/rot16.ll +++ b/llvm/test/CodeGen/X86/rot16.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86 | FileCheck %s +; RUN: llc < %s -march=x86 -mcpu=generic | FileCheck %s define i16 @foo(i16 %x, i16 %y, i16 %z) nounwind readnone { entry: diff --git a/llvm/test/CodeGen/X86/shift-double.ll b/llvm/test/CodeGen/X86/shift-double.ll index 8d2b2907c5a..fd4ba81d47c 100644 --- a/llvm/test/CodeGen/X86/shift-double.ll +++ b/llvm/test/CodeGen/X86/shift-double.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -march=x86 -x86-asm-syntax=intel | \ +; RUN: llc < %s -march=x86 -mcpu=generic -x86-asm-syntax=intel | \ ; RUN: grep "sh[lr]d" | count 5 define i64 @test1(i64 %X, i8 %C) { |

