Implemented verification for goto/16/32

git-svn-id: https://smali.googlecode.com/svn/trunk@579 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2010-01-24 19:19:27 +00:00
parent ed140ca3e4
commit 898edda7ce

View File

@ -468,6 +468,11 @@ public class MethodAnalyzer {
return handleFillArrayData(analyzedInstruction);
case THROW:
return handleThrow(analyzedInstruction);
case GOTO:
case GOTO_16:
case GOTO_32:
//nothing to do
return true;
}
assert false;
return false;