Skip to content

Commit

Permalink
computeVaArgsPosition can be static
Browse files Browse the repository at this point in the history
  • Loading branch information
lewurm committed Apr 7, 2022
1 parent a6b0dc4 commit bf277e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public void visit(CallInstruction call) {
createFrameWrite(result, call, intent);
}

private int computeVaArgsPosition(SymbolImpl target) {
private static int computeVaArgsPosition(SymbolImpl target) {
int fixedArgs = FunctionType.NOT_VARARGS;

if (target.getType() instanceof FunctionType) {
Expand Down

0 comments on commit bf277e5

Please sign in to comment.