fix: change exception to soft warning for getType in RegisterArg

This commit is contained in:
Skylot
2019-03-26 15:44:32 +03:00
parent 84cb6b9569
commit 3492ec3517
@@ -57,7 +57,8 @@ public class RegisterArg extends InsnArg implements Named {
if (sVar != null) {
return sVar.getTypeInfo().getType();
}
throw new JadxRuntimeException("Register type unknown, SSA variable not initialized: r" + regNum);
LOG.warn("Register type unknown, SSA variable not initialized: r{}", regNum);
return type;
}
public ArgType getInitType() {