diff src/cpu/zero/vm/interpreter_zero.hpp @ 1509:68d6683eaef7

6949423: remove tagged stack interpreter for Zero Summary: Missed Zero changes for 6943304. Reviewed-by: twisti Contributed-by: Gary Benson <gbenson@redhat.com>
author twisti
date Tue, 04 May 2010 02:33:59 -0700
parents 2338d41fbd81
children c18cbe5936b8
line wrap: on
line diff
--- a/src/cpu/zero/vm/interpreter_zero.hpp	Sat May 01 21:57:35 2010 -0700
+++ b/src/cpu/zero/vm/interpreter_zero.hpp	Tue May 04 02:33:59 2010 -0700
@@ -36,14 +36,14 @@
 
  public:
   static int expr_index_at(int i) {
-    return stackElementWords() * i;
+    return stackElementWords * i;
   }
 
   static int expr_offset_in_bytes(int i) {
-    return stackElementSize() * i;
+    return stackElementSize * i;
   }
 
   static int local_index_at(int i) {
     assert(i <= 0, "local direction already negated");
-    return stackElementWords() * i;
+    return stackElementWords * i;
   }