summaryrefslogtreecommitdiffstats
path: root/compiler/dex
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2015-04-25 14:20:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-25 14:20:53 +0000
commit4a35e768dcb12ffecfed07e0417610afcb9472eb (patch)
treef2591827b910a3c9a3cfa791f62cd71d313ece34 /compiler/dex
parent948dfff2ee9c3411088a89e1a8664652f46fbf35 (diff)
parent3c1c05a1e8eeff783f2854ee31bff8117ee274dd (diff)
downloadart-4a35e768dcb12ffecfed07e0417610afcb9472eb.zip
art-4a35e768dcb12ffecfed07e0417610afcb9472eb.tar.gz
art-4a35e768dcb12ffecfed07e0417610afcb9472eb.tar.bz2
Merge "Disable Quick's GVN-based dead code elimination."
Diffstat (limited to 'compiler/dex')
-rw-r--r--compiler/dex/quick/quick_compiler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/quick_compiler.cc b/compiler/dex/quick/quick_compiler.cc
index 73cfe92..39eb117 100644
--- a/compiler/dex/quick/quick_compiler.cc
+++ b/compiler/dex/quick/quick_compiler.cc
@@ -575,7 +575,7 @@ static uint32_t kCompilerOptimizerDisableFlags = 0 | // Disable specific optimi
// (1 << kNullCheckElimination) |
// (1 << kClassInitCheckElimination) |
// (1 << kGlobalValueNumbering) |
- // (1 << kGvnDeadCodeElimination) |
+ (1 << kGvnDeadCodeElimination) |
// (1 << kLocalValueNumbering) |
// (1 << kPromoteRegs) |
// (1 << kTrackLiveTemps) |