Skip to content

Commit

Permalink
Fix bad typo
Browse files Browse the repository at this point in the history
  • Loading branch information
liach committed Sep 18, 2024
1 parent f40c49a commit d86736a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ public synchronized LambdaForm setCachedLambdaForm(int which, LambdaForm form) {
int pslotCount = ptypes.length;
boolean anyPrimitive = basicType.returnType().isPrimitive();
for (var p : basicType.ptypes()) {
if (p == double.class || p == float.class) {
if (p == double.class || p == long.class) {
pslotCount++;
anyPrimitive = true;
} else if (!anyPrimitive && p.isPrimitive()) {
Expand Down

0 comments on commit d86736a

Please sign in to comment.