diff options
author | 2021-10-08 13:43:59 +0100 | |
---|---|---|
committer | 2021-10-08 13:43:59 +0100 | |
commit | a32d2d8b5ac9bda0aa1a7d12790b7ed3e5750b4a (patch) | |
tree | ed9a190b711fc96719ace3561eeadc70e65e4f5d | |
parent | 4d29efcc54c2d98e70e2221b66c04f309d64c398 (diff) |
Disable kEnableOnDemandDexDequicken.
Unable to reproduce the error that triggered the revert of:
https://android-review.googlesource.com/c/platform/art/+/1842432
This CL is a safer version of the complete removal. I'll follow-up with
the complete removal if the bots stay green.
Test: test.py
Test: atest FrameworksNetIntegrationTests
Bug: 196414062
Change-Id: If6d96aaed06288b89dff41a85900cb24dc47adb5
-rw-r--r-- | openjdkjvmti/ti_class_definition.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openjdkjvmti/ti_class_definition.h b/openjdkjvmti/ti_class_definition.h index cb0853bdb5..5afe3ee123 100644 --- a/openjdkjvmti/ti_class_definition.h +++ b/openjdkjvmti/ti_class_definition.h @@ -50,7 +50,7 @@ namespace openjdkjvmti { class ArtClassDefinition { public: // If we support doing a on-demand dex-dequickening using signal handlers. - static constexpr bool kEnableOnDemandDexDequicken = true; + static constexpr bool kEnableOnDemandDexDequicken = false; ArtClassDefinition() : klass_(nullptr), |