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:
Daniel Fuchs 2015-02-11 17:41:55 +01:00
parent 03d00d97a5
commit 654c893170
2 changed files with 3 additions and 3 deletions

View file

@ -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))