Skip to content

Commit

Permalink
fix: change exception to soft warning for getType in RegisterArg
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Mar 26, 2019
1 parent 84cb6b9 commit 3492ec3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ public ArgType getType() {
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() {
Expand Down

0 comments on commit 3492ec3

Please sign in to comment.