comparison src/share/vm/runtime/stackValueCollection.cpp @ 2192:b92c45f2bc75

7016023: Enable building ARM and PPC from src/closed repository Reviewed-by: dholmes, bdelsart
author bobv
date Wed, 02 Feb 2011 11:35:26 -0500
parents f95d63e2154a
children 1d1603768966
comparison
equal deleted inserted replaced
2177:3582bf76420e 2192:b92c45f2bc75
30 #ifdef TARGET_ARCH_sparc 30 #ifdef TARGET_ARCH_sparc
31 # include "jniTypes_sparc.hpp" 31 # include "jniTypes_sparc.hpp"
32 #endif 32 #endif
33 #ifdef TARGET_ARCH_zero 33 #ifdef TARGET_ARCH_zero
34 # include "jniTypes_zero.hpp" 34 # include "jniTypes_zero.hpp"
35 #endif
36 #ifdef TARGET_ARCH_arm
37 # include "jniTypes_arm.hpp"
38 #endif
39 #ifdef TARGET_ARCH_ppc
40 # include "jniTypes_ppc.hpp"
35 #endif 41 #endif
36 42
37 jint StackValueCollection::int_at(int slot) const { 43 jint StackValueCollection::int_at(int slot) const {
38 intptr_t val = at(slot)->get_int(); 44 intptr_t val = at(slot)->get_int();
39 jint ival = *((jint*) (&val)); 45 jint ival = *((jint*) (&val));