diff options
| author | 2016-11-14 14:38:53 -0800 | |
|---|---|---|
| committer | 2016-11-15 13:02:24 -0800 | |
| commit | 9fd8c60cdff7b28a89bb97fd90ae9d0f37cf8f8b (patch) | |
| tree | 630b6f23441a26e4b5d9434900993a710635c9e9 /runtime/oat.h | |
| parent | 26c8f54be31ccf99540906746b17fc8bba1bab9a (diff) | |
Pass object instead of class to instanceof entrypoint
Reduces code size. Also avoid read barrier for kArrayCheck case.
Bug: 32577579
Test: test-art-host, test-art-target CC
Change-Id: Ia890f656fe166b2d39c522b63a8a6469404134ae
Diffstat (limited to 'runtime/oat.h')
| -rw-r--r-- | runtime/oat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/oat.h b/runtime/oat.h index 814a4934e7..3aef707dc3 100644 --- a/runtime/oat.h +++ b/runtime/oat.h @@ -32,7 +32,7 @@ class InstructionSetFeatures; class PACKED(4) OatHeader { public: static constexpr uint8_t kOatMagic[] = { 'o', 'a', 't', '\n' }; - static constexpr uint8_t kOatVersion[] = { '0', '9', '0', '\0' }; + static constexpr uint8_t kOatVersion[] = { '0', '9', '1', '\0' }; static constexpr const char* kImageLocationKey = "image-location"; static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline"; |