We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d05e588 commit c6a5dffCopy full SHA for c6a5dff
make/jdk/src/classes/build/tools/intpoly/FieldGen.java
@@ -628,7 +628,7 @@ private String generate(FieldParams params) throws IOException {
628
result.appendLine("private static final long CARRY_ADD = 1 << "
629
+ (params.getBitsPerLimb() - 1) + ";");
630
if (params.getBitsPerLimb() * params.getNumLimbs() != params.getPower()) {
631
- result.appendLine("private static final long LIMB_MASK = -1 "
+ result.appendLine("private static final long LIMB_MASK = -1L "
632
+ ">>> (64 - BITS_PER_LIMB);");
633
}
634
0 commit comments