comparison src/cpu/x86/vm/bytecodeInterpreter_x86.inline.hpp @ 14676:d3f14809b051

8036146: make CPP interpreter build again Summary: fix build of CPP interpreter on x86 and sparc Reviewed-by: kvn
author roland
date Wed, 05 Mar 2014 15:14:25 +0100
parents f95d63e2154a
children 92aa6797d639
comparison
equal deleted inserted replaced
14675:bb4db06fd36f 14676:d3f14809b051
248 248
249 inline jint BytecodeInterpreter::VMintSub(jint op1, jint op2) { 249 inline jint BytecodeInterpreter::VMintSub(jint op1, jint op2) {
250 return op1 - op2; 250 return op1 - op2;
251 } 251 }
252 252
253 inline jint BytecodeInterpreter::VMintUshr(jint op1, jint op2) { 253 inline juint BytecodeInterpreter::VMintUshr(jint op1, jint op2) {
254 return ((juint) op1) >> (op2 & 0x1f); 254 return ((juint) op1) >> (op2 & 0x1f);
255 } 255 }
256 256
257 inline jint BytecodeInterpreter::VMintXor(jint op1, jint op2) { 257 inline jint BytecodeInterpreter::VMintXor(jint op1, jint op2) {
258 return op1 ^ op2; 258 return op1 ^ op2;