aboutsummaryrefslogtreecommitdiff
path: root/type_dex.h
diff options
context:
space:
mode:
Diffstat (limited to 'type_dex.h')
-rw-r--r--type_dex.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/type_dex.h b/type_dex.h
index e0ccc28..ee61ecd 100644
--- a/type_dex.h
+++ b/type_dex.h
@@ -12,7 +12,7 @@ namespace dex {
// Contains types that models DEX executable format data structures.
// See https://source.android.com/devices/tech/dalvik/dex-format
-// The supported versions are 035, 037, and 038.
+// The supported versions are 035, 037, 038, and 039.
enum class FormatId : uint8_t {
b, // 22b.
@@ -114,6 +114,8 @@ constexpr Instruction kByteCode[] = {
{0xFB, 4, FormatId::c},
{0xFC, 3, FormatId::c},
{0xFD, 3, FormatId::c},
+ {0xFE, 2, FormatId::c},
+ {0xFF, 2, FormatId::c},
};
// Supported by MSVC, g++, and clang++. Ensures no gaps in packing.