Tweak 3 tests in llvm/test/CodeGen/X86 to add -mcpu=generic since r195383.

They failed on bdver2 buildslave.

FIXME: FileCheck-ize them.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195407 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2013-11-22 02:28:04 +00:00
parent 709a31b5f9
commit ca3c03a167
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
; RUN: llc < %s -march=x86 | \ ; RUN: llc < %s -march=x86 -mcpu=generic | \
; RUN: grep shld | count 1 ; RUN: grep shld | count 1
; ;
; Check that the isel does not fold the shld, which already folds a load ; Check that the isel does not fold the shld, which already folds a load

View File

@ -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 { define i16 @foo(i16 %x, i16 %y, i16 %z) nounwind readnone {
entry: entry:

View File

@ -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 ; RUN: grep "sh[lr]d" | count 5
define i64 @test1(i64 %X, i8 %C) { define i64 @test1(i64 %X, i8 %C) {