diff options
author | Roland Levillain <rpl@google.com> | 2015-04-25 12:17:24 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2015-04-25 14:09:38 +0000 |
commit | 3c1c05a1e8eeff783f2854ee31bff8117ee274dd (patch) | |
tree | b923fd82446e30f4e868ed1094f7966f2d24d99f /compiler/dex | |
parent | 1e3ab9ad421d471ca8eadac03084ce19fd06d4eb (diff) | |
download | art-3c1c05a1e8eeff783f2854ee31bff8117ee274dd.tar.gz art-3c1c05a1e8eeff783f2854ee31bff8117ee274dd.tar.bz2 art-3c1c05a1e8eeff783f2854ee31bff8117ee274dd.zip |
Disable Quick's GVN-based dead code elimination.
Quick's GVN/DCE seems to trouble the builds.
Bug: 20572509
Change-Id: I1e315b4eee4443f04c7cb2cef953d8e4eff619ce
Diffstat (limited to 'compiler/dex')
-rw-r--r-- | compiler/dex/quick/quick_compiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/quick/quick_compiler.cc b/compiler/dex/quick/quick_compiler.cc index 73cfe92c45..39eb117e9c 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) | |