mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
8072482: Cleanup: In jvm.cpp and other shared files declaration of 64bits constants should use the CONST64/UCONST64 macros instead of the LL suffix
Reviewed-by: dholmes, coleenp
This commit is contained in:
parent
03d00d97a5
commit
654c893170
2 changed files with 3 additions and 3 deletions
|
@ -303,7 +303,7 @@ JVM_END
|
|||
// java.lang.System, but we choose to keep it here so that it stays next
|
||||
// to JVM_CurrentTimeMillis and JVM_NanoTime
|
||||
|
||||
const jlong MAX_DIFF_SECS = 0x0100000000LL; // 2^32
|
||||
const jlong MAX_DIFF_SECS = CONST64(0x0100000000); // 2^32
|
||||
const jlong MIN_DIFF_SECS = -MAX_DIFF_SECS; // -2^32
|
||||
|
||||
JVM_LEAF(jlong, JVM_GetNanoTimeAdjustment(JNIEnv *env, jclass ignored, jlong offset_secs))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue