forked from OSchip/llvm-project
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:
parent
74ec8f9c50
commit
be1c875a1c
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue