# HG changeset patch # User dfuchs # Date 1423066323 -3600 # Node ID 4283637ac96e6a13ee30f53d98d440c4a268b09e # Parent a9eac944c97dbf9b5a99b98677421f793b1596b9 8072450: 9-dev build failed on elinux-i586 and rlinux-i586 Summary: added LL suffix to constant declaration Reviewed-by: dholmes, coleenp, sla diff -r a9eac944c97d -r 4283637ac96e hotspot/src/share/vm/prims/jvm.cpp --- a/hotspot/src/share/vm/prims/jvm.cpp Fri Jan 30 16:56:05 2015 -0800 +++ b/hotspot/src/share/vm/prims/jvm.cpp Wed Feb 04 17:12:03 2015 +0100 @@ -304,7 +304,7 @@ // 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 = 0x0100000000; // 2^32 +const jlong MAX_DIFF_SECS = 0x0100000000LL; // 2^32 const jlong MIN_DIFF_SECS = -MAX_DIFF_SECS; // -2^32 JVM_LEAF(jlong, JVM_GetNanoTimeAdjustment(JNIEnv *env, jclass ignored, jlong offset_secs))