# HG changeset patch # User vladidan # Date 1386886084 18000 # Node ID dc09e905db20bdd4de5ce9cc8068394fbeb8d95a # Parent e3995ab443937d1bd542c9f405a2f2ac6ea63163# Parent fa6d364024c2e51180cdad7db8d0476594b6420b Merge diff -r e3995ab44393 -r dc09e905db20 src/share/vm/utilities/globalDefinitions_gcc.hpp --- a/src/share/vm/utilities/globalDefinitions_gcc.hpp Thu Dec 12 16:13:44 2013 +0100 +++ b/src/share/vm/utilities/globalDefinitions_gcc.hpp Thu Dec 12 17:08:04 2013 -0500 @@ -174,6 +174,7 @@ inline jint jint_cast (jfloat x) { return *(jint* )&x; } inline jlong jlong_cast (jdouble x) { return *(jlong* )&x; } +inline julong julong_cast (jdouble x) { return *(julong* )&x; } inline jfloat jfloat_cast (jint x) { return *(jfloat* )&x; } inline jdouble jdouble_cast(jlong x) { return *(jdouble*)&x; }