comparison src/cpu/sparc/vm/jni_sparc.h @ 513:2328d1d3f8cf

6781583: Hotspot build fails on linux 64 bit platform with gcc 4.3.2 Summary: Fixed the wrong cast between types since more restrictions are imposed by gcc 4.3.2 Reviewed-by: jcoomes, acorn, phh, never
author xlu
date Wed, 24 Dec 2008 19:13:53 -0800
parents a61af66fc99e
children 0fbdb4381b99
comparison
equal deleted inserted replaced
512:db4caa99ef11 513:2328d1d3f8cf
26 #define JNIEXPORT 26 #define JNIEXPORT
27 #define JNIIMPORT 27 #define JNIIMPORT
28 #define JNICALL 28 #define JNICALL
29 29
30 typedef int jint; 30 typedef int jint;
31 typedef long long jlong; 31
32 #ifdef _LP64
33 typedef long jlong;
34 #else
35 typedef long long jlong;
36 #endif
37
32 typedef signed char jbyte; 38 typedef signed char jbyte;