Commit 3492ec35 authored by Skylot's avatar Skylot

fix: change exception to soft warning for getType in RegisterArg

parent 84cb6b95
......@@ -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() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment