1
0
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:
Chad Rosier 2015-12-10 19:23:02 +00:00
parent 43562b355d
commit f118529c0e
5 changed files with 5 additions and 5 deletions

View File

@ -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.

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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