diff 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
line wrap: on
line diff
--- a/src/cpu/x86/vm/bytecodeInterpreter_x86.inline.hpp	Wed Mar 05 02:41:57 2014 -0800
+++ b/src/cpu/x86/vm/bytecodeInterpreter_x86.inline.hpp	Wed Mar 05 15:14:25 2014 +0100
@@ -250,7 +250,7 @@
   return op1 - op2;
 }
 
-inline jint BytecodeInterpreter::VMintUshr(jint op1, jint op2) {
+inline juint BytecodeInterpreter::VMintUshr(jint op1, jint op2) {
   return ((juint) op1) >> (op2 & 0x1f);
 }