summaryrefslogtreecommitdiff
path: root/runtime/oat.h
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/oat.h')
-rw-r--r--runtime/oat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/oat.h b/runtime/oat.h
index ac70a7755c..6a20cc1bd9 100644
--- a/runtime/oat.h
+++ b/runtime/oat.h
@@ -32,8 +32,8 @@ class InstructionSetFeatures;
class PACKED(4) OatHeader {
public:
static constexpr std::array<uint8_t, 4> kOatMagic { { 'o', 'a', 't', '\n' } };
- // Last oat version changed reason: Introduced new entry points for method entry / exit hooks.
- static constexpr std::array<uint8_t, 4> kOatVersion{ {'2', '0', '4', '\0'} };
+ // Last oat version changed reason: Inlining across dex files for bootclasspath methods.
+ static constexpr std::array<uint8_t, 4> kOatVersion{ {'2', '0', '5', '\0'} };
static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline";
static constexpr const char* kDebuggableKey = "debuggable";