提交 91c88c5e 编写于 作者: T twisti

7190416: JSR 292: typo in InvokerBytecodeGenerator.getConstantPoolSize

Reviewed-by: jrose
上级 ff5bca1a
...@@ -230,7 +230,7 @@ class InvokerBytecodeGenerator { ...@@ -230,7 +230,7 @@ class InvokerBytecodeGenerator {
// u2 minor_version; // u2 minor_version;
// u2 major_version; // u2 major_version;
// u2 constant_pool_count; // u2 constant_pool_count;
return ((classFile[8] << 8) & 0xFF) | ( classFile[9] & 0xFF); return ((classFile[8] & 0xFF) << 8) | (classFile[9] & 0xFF);
} }
/** /**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册