Bump image version for bitstring type check.
Enabling the bitstring type check requires rebuilding
the boot image. This should have been done in
https://android-review.googlesource.com/615367 .
Test: Rely on TreeHugger.
Bug: 64692057
Change-Id: I7c0cdbb1cd1e1b0b30469b9f808842b4c38585c7
diff --git a/runtime/image.cc b/runtime/image.cc
index 56fee9d..5af3e54 100644
--- a/runtime/image.cc
+++ b/runtime/image.cc
@@ -26,7 +26,7 @@
namespace art {
const uint8_t ImageHeader::kImageMagic[] = { 'a', 'r', 't', '\n' };
-const uint8_t ImageHeader::kImageVersion[] = { '0', '5', '6', '\0' }; // No image tables in .bss.
+const uint8_t ImageHeader::kImageVersion[] = { '0', '5', '7', '\0' }; // R^2 Bitstring type check.
ImageHeader::ImageHeader(uint32_t image_begin,
uint32_t image_size,