summaryrefslogtreecommitdiffstats
path: root/compiler/dex/quick
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2015-04-24 18:11:10 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-24 18:11:11 +0000
commitae803f6efbe8378b5423c51ee3c5564cae0e6e59 (patch)
tree49e0314cb8a6a9e8bbbc303656af9bad1d89f993 /compiler/dex/quick
parent83134ec5f26979cbb9131dccaf849a72cdd752f6 (diff)
parentad67727a492df635aa54dbe58d6c0de54431f600 (diff)
downloadart-ae803f6efbe8378b5423c51ee3c5564cae0e6e59.zip
art-ae803f6efbe8378b5423c51ee3c5564cae0e6e59.tar.gz
art-ae803f6efbe8378b5423c51ee3c5564cae0e6e59.tar.bz2
Merge "Quick: Fix and enable DCE and improve GVN/DCE cleanup."
Diffstat (limited to 'compiler/dex/quick')
-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 39eb117..73cfe92 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) |