Fix minor issue in MethodAnalyzer.analyzeMoveException

This commit is contained in:
Ben Gruver
2013-03-30 21:24:32 -07:00
parent 45972c352c
commit 0a9ae5a0a7

View File

@ -1029,7 +1029,7 @@ public class MethodAnalyzer {
}
}
if (exceptionType == null) {
if (exceptionType.category == RegisterType.UNKNOWN) {
throw new AnalysisException("move-exception must be the first instruction in an exception handler block");
}