diff options
Diffstat (limited to 'runtime/oat.h')
| -rw-r--r-- | runtime/oat.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/oat.h b/runtime/oat.h index 0f4cbbb767..dc103e2b52 100644 --- a/runtime/oat.h +++ b/runtime/oat.h @@ -32,13 +32,12 @@ class InstructionSetFeatures; class PACKED(4) OatHeader { public: static constexpr uint8_t kOatMagic[] = { 'o', 'a', 't', '\n' }; - static constexpr uint8_t kOatVersion[] = { '0', '9', '3', '\0' }; + static constexpr uint8_t kOatVersion[] = { '0', '9', '5', '\0' }; // alloc entrypoints change static constexpr const char* kImageLocationKey = "image-location"; static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline"; static constexpr const char* kDex2OatHostKey = "dex2oat-host"; static constexpr const char* kPicKey = "pic"; - static constexpr const char* kHasPatchInfoKey = "has-patch-info"; static constexpr const char* kDebuggableKey = "debuggable"; static constexpr const char* kNativeDebuggableKey = "native-debuggable"; static constexpr const char* kCompilerFilter = "compiler-filter"; @@ -110,7 +109,6 @@ class PACKED(4) OatHeader { size_t GetHeaderSize() const; bool IsPic() const; - bool HasPatchInfo() const; bool IsDebuggable() const; bool IsNativeDebuggable() const; CompilerFilter::Filter GetCompilerFilter() const; |