summaryrefslogtreecommitdiffstats
path: root/runtime/image.cc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2015-02-18 15:38:57 -0800
committerAndreas Gampe <agampe@google.com>2015-02-19 10:05:20 -0800
commitf52857f4735a49a2a15305b3d1edf808a126b164 (patch)
tree5deb6ea6ee9a3b8152f0aa612016b84a3027f782 /runtime/image.cc
parent887653c253e9d049d0817867db02392a9a3db40e (diff)
downloadart-f52857f4735a49a2a15305b3d1edf808a126b164.zip
art-f52857f4735a49a2a15305b3d1edf808a126b164.tar.gz
art-f52857f4735a49a2a15305b3d1edf808a126b164.tar.bz2
ART: Ensure order of field gaps
Disambiguate field gaps of same size by starting offset. That will make the priority queue stable. Bug: 19413180 Change-Id: I6302a8bbdc590af7e9ec4f332c386c375fa8d8cd
Diffstat (limited to 'runtime/image.cc')
-rw-r--r--runtime/image.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/image.cc b/runtime/image.cc
index 269a07d..3cb2580 100644
--- a/runtime/image.cc
+++ b/runtime/image.cc
@@ -24,7 +24,7 @@
namespace art {
const uint8_t ImageHeader::kImageMagic[] = { 'a', 'r', 't', '\n' };
-const uint8_t ImageHeader::kImageVersion[] = { '0', '1', '3', '\0' };
+const uint8_t ImageHeader::kImageVersion[] = { '0', '1', '4', '\0' };
ImageHeader::ImageHeader(uint32_t image_begin,
uint32_t image_size,