comparison src/share/vm/interpreter/bytecodeStream.hpp @ 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 8012aa3ccede
children da91efe96a93
comparison
equal deleted inserted replaced
2177:3582bf76420e 2192:b92c45f2bc75
34 #ifdef TARGET_ARCH_sparc 34 #ifdef TARGET_ARCH_sparc
35 # include "bytes_sparc.hpp" 35 # include "bytes_sparc.hpp"
36 #endif 36 #endif
37 #ifdef TARGET_ARCH_zero 37 #ifdef TARGET_ARCH_zero
38 # include "bytes_zero.hpp" 38 # include "bytes_zero.hpp"
39 #endif
40 #ifdef TARGET_ARCH_arm
41 # include "bytes_arm.hpp"
42 #endif
43 #ifdef TARGET_ARCH_ppc
44 # include "bytes_ppc.hpp"
39 #endif 45 #endif
40 46
41 // A BytecodeStream is used for fast iteration over the bytecodes 47 // A BytecodeStream is used for fast iteration over the bytecodes
42 // of a methodOop. 48 // of a methodOop.
43 // 49 //