Trivial change to make the test use Use –mcpu=generic,

so that the test will not fail when run on an Intel Atom
processor, due to the Atom scheduler producing an instruction sequence that is
different from that which is normally expected.

llvm-svn: 151832
This commit is contained in:
Preston Gurd 2012-03-01 19:57:20 +00:00
parent 791437e5f8
commit 29cb4871db
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
; RUN: llc < %s -march=x86-64 -enable-lsr-nested -o %t
; RUN: llc < %s -mcpu=generic -march=x86-64 -enable-lsr-nested -o %t
; RUN: not grep inc %t
; RUN: grep dec %t | count 2
; RUN: grep addq %t | count 12

View File

@ -1,6 +1,6 @@
; RUN: llc < %s -march=x86 | FileCheck %s
; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
; CHECK-NOT: lea
; RUN: llc < %s -mcpu=generic -march=x86 | FileCheck %s
; RUN: llc < %s -mcpu=generic -mtriple=x86_64-linux | FileCheck %s
; CHECK-NOT: lea
@B = external global [1000 x float], align 32
@A = external global [1000 x float], align 32