forked from OSchip/llvm-project
blockfreq: Temporarily turn on -debug-only=block-freq
These tests fail after my BlockFrequencyInfo rewrite on two buildbots [1][2]. I can't reproduce it locally, so I'm temporarily turning on -debug-only=block-freq so I can find the problem. [1]: http://bb.pgr.jp/builders/ninja-x64-msvc-RA-centos6/builds/1860 [2]: http://llvm-amd64.freebsd.your.org/b/builders/clang-i386-freebsd/builds/18477 llvm-svn: 206705
This commit is contained in:
parent
875ddfac75
commit
bffee5bb90
|
@ -1,5 +1,6 @@
|
|||
;RUN: llc -march=sparc < %s -verify-machineinstrs | FileCheck %s
|
||||
;RUN: llc -march=sparc -O0 < %s -verify-machineinstrs | FileCheck %s -check-prefix=UNOPT
|
||||
;RUN: llc -debug-only=block-freq -march=sparc < %s -verify-machineinstrs | FileCheck %s
|
||||
;RUN: llc -debug-only=block-freq -march=sparc -O0 < %s -verify-machineinstrs | FileCheck %s -check-prefix=UNOPT
|
||||
;REQUIRES: asserts
|
||||
|
||||
target triple = "sparc-unknown-linux-gnu"
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
; RUN: llc < %s -mcpu=atom -march=x86-64 | FileCheck %s
|
||||
; RUN: llc -debug-only=block-freq < %s -mcpu=atom -march=x86-64 | FileCheck %s
|
||||
; REQUIRES: asserts
|
||||
|
||||
target triple = "x86_64-unknown-linux-gnu"
|
||||
|
||||
|
|
Loading…
Reference in New Issue