From f6ba5b316b51d0fb9f91cb51a42e51dfeee62ee4 Mon Sep 17 00:00:00 2001 From: David Srbecky Date: Sat, 23 Jun 2018 22:05:49 +0100 Subject: Add method frame info to CodeInfo. The stored information will be used in follow-up CLs. This temporarily increases .oat file size by 0.7%. Test: test-art-host-gtest Change-Id: Ie7d898b06398ae44287bb1e8153861ab112a216c --- runtime/oat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime/oat.h') diff --git a/runtime/oat.h b/runtime/oat.h index 22c6a39e09..02fad46a0d 100644 --- a/runtime/oat.h +++ b/runtime/oat.h @@ -32,8 +32,8 @@ class InstructionSetFeatures; class PACKED(4) OatHeader { public: static constexpr uint8_t kOatMagic[] = { 'o', 'a', 't', '\n' }; - // Last oat version changed reason: Add Kind column to stack maps. - static constexpr uint8_t kOatVersion[] = { '1', '4', '9', '\0' }; + // Last oat version changed reason: Add method frame info to CodeInfo. + static constexpr uint8_t kOatVersion[] = { '1', '5', '0', '\0' }; static constexpr const char* kImageLocationKey = "image-location"; static constexpr const char* kDex2OatCmdLineKey = "dex2oat-cmdline"; -- cgit v1.2.3-59-g8ed1b