diff options
| author | 2018-01-13 01:40:55 +0000 | |
|---|---|---|
| committer | 2018-01-13 01:40:55 +0000 | |
| commit | c3e60f38c81a3dd4ff49dca0f05f84a8b464004f (patch) | |
| tree | fa10893a270bad91d3503a761f140cbe9c97a74c /compiler/driver/compiler_driver.cc | |
| parent | 3c9e0f69b04b614c44448e66e15c6f8a78da4b2c (diff) | |
| parent | 8892c6bd9235e7ae697039c901aaeea1597a7473 (diff) | |
Merge changes Ib983e85c,Ic01ea4e8
* changes:
Move debug info offsets into a side table
Revert "Revert "Move quickening info logic to its own table""
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index c0886d0185..869865956c 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -424,10 +424,6 @@ static optimizer::DexToDexCompilationLevel GetDexToDexCompilationLevel( // optimizations that could break that. max_level = optimizer::DexToDexCompilationLevel::kDontDexToDexCompile; } - if (!VdexFile::CanEncodeQuickenedData(dex_file)) { - // Don't do any dex level optimizations if we cannot encode the quickening. - return optimizer::DexToDexCompilationLevel::kDontDexToDexCompile; - } if (klass->IsVerified()) { // Class is verified so we can enable DEX-to-DEX compilation for performance. return max_level; |