diff options
| author | 2015-04-25 14:32:43 +0000 | |
|---|---|---|
| committer | 2015-04-25 14:32:43 +0000 | |
| commit | e19a9eefa66c8af72c582bbfd07087b39a5d84bc (patch) | |
| tree | f2591827b910a3c9a3cfa791f62cd71d313ece34 /compiler/dex/quick/quick_compiler.cc | |
| parent | 8198883c836af7e8fe6bb2ee59a1c0903c1b3d37 (diff) | |
| parent | 4a35e768dcb12ffecfed07e0417610afcb9472eb (diff) | |
am 4a35e768: Merge "Disable Quick\'s GVN-based dead code elimination."
* commit '4a35e768dcb12ffecfed07e0417610afcb9472eb':
Disable Quick's GVN-based dead code elimination.
Diffstat (limited to 'compiler/dex/quick/quick_compiler.cc')
| -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) | |