Fixes to allow the verifier to process frameworks.
I've disabled the access checks for class and method, which need some
fixing, but nothing in frameworks should be failing in the verifier
anymore.
Change-Id: Ic16a8627b6a5b74b385a1f30dbc937c2ced910a4
diff --git a/src/dex_instruction.cc b/src/dex_instruction.cc
index 39348ed..4db8846 100644
--- a/src/dex_instruction.cc
+++ b/src/dex_instruction.cc
@@ -74,6 +74,8 @@
case k10t: // op +AA
vA = (int8_t) INST_AA(insn); // sign-extend 8-bit value
break;
+ case k20bc: // op AA, kind@BBBB
+ break;
case k20t: // op +AAAA
vA = (int16_t) FETCH(1); // sign-extend 16-bit value
break;