mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
[DSE] Disable non-local DSE to see if the bots go green.
I see a few bots timing out, so I'm speculatively disabling r255247. llvm-svn: 255286
This commit is contained in:
parent
43562b355d
commit
f118529c0e
@ -43,7 +43,7 @@ STATISTIC(NumFastStores, "Number of stores deleted");
|
||||
STATISTIC(NumFastOther , "Number of other instrs removed");
|
||||
STATISTIC(NumNonLocalStores, "Number of non-local stores deleted");
|
||||
|
||||
static cl::opt<bool> EnableNonLocalDSE("enable-nonlocal-dse", cl::init(true));
|
||||
static cl::opt<bool> EnableNonLocalDSE("enable-nonlocal-dse", cl::init(false));
|
||||
|
||||
/// MaxNonLocalAttempts is an arbitrary threshold that provides
|
||||
/// an early opportunitiy for bail out to control compile time.
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -basicaa -dse -S | FileCheck %s
|
||||
; RUN: opt < %s -basicaa -dse -enable-nonlocal-dse -S | FileCheck %s
|
||||
|
||||
; The store and add in if.then block should be removed by non-local DSE.
|
||||
; CHECK-NOT: %stval = add
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -basicaa -dse -S | FileCheck %s
|
||||
; RUN: opt < %s -basicaa -dse -enable-nonlocal-dse -S | FileCheck %s
|
||||
|
||||
; The add and store in entry block should be removed by non-local DSE.
|
||||
; CHECK-NOT: %stval = add
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -basicaa -dse -S | FileCheck %s
|
||||
; RUN: opt < %s -basicaa -dse -enable-nonlocal-dse -S | FileCheck %s
|
||||
|
||||
; The add and store in entry block should be removed by non-local DSE.
|
||||
; CHECK-NOT: %stval = add
|
||||
|
@ -1,4 +1,4 @@
|
||||
; RUN: opt < %s -basicaa -dse -S | FileCheck %s
|
||||
; RUN: opt < %s -basicaa -dse -enable-nonlocal-dse -S | FileCheck %s
|
||||
|
||||
; The store in for.body block should be removed by non-local DSE.
|
||||
; CHECK-NOT: store i32 0, i32* %arrayidx
|
||||
|
Loading…
Reference in New Issue
Block a user