diff options
author | Vladimir Marko <vmarko@google.com> | 2015-04-27 16:53:25 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-04-27 16:53:26 +0000 |
commit | 295dda5066dfeb5bed88a4a484268f94b060c7fb (patch) | |
tree | 8ea3d63febc69eaae9a7169e62f58fec26fcfae9 /compiler/dex/quick | |
parent | d14438f0c5071962be7fab572b54687d32d9d087 (diff) | |
parent | a5e69e87c630c08c0de1740427e60d531ce851b9 (diff) | |
download | art-295dda5066dfeb5bed88a4a484268f94b060c7fb.zip art-295dda5066dfeb5bed88a4a484268f94b060c7fb.tar.gz art-295dda5066dfeb5bed88a4a484268f94b060c7fb.tar.bz2 |
Merge "Quick: Rely on inferred types in GVN/LVN/DCE."
Diffstat (limited to 'compiler/dex/quick')
-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 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) | |