hotspot/src/cpu/x86/vm/interpreter_x86.hpp
changeset 9630 d6419e4395e3
parent 8315 1503f9d7681f
--- a/hotspot/src/cpu/x86/vm/interpreter_x86.hpp	Fri May 06 12:12:29 2011 -0700
+++ b/hotspot/src/cpu/x86/vm/interpreter_x86.hpp	Fri May 06 16:33:13 2011 -0700
@@ -26,7 +26,9 @@
 #define CPU_X86_VM_INTERPRETER_X86_HPP
 
  public:
-  static Address::ScaleFactor stackElementScale() { return Address::times_4; }
+  static Address::ScaleFactor stackElementScale() {
+    return NOT_LP64(Address::times_4) LP64_ONLY(Address::times_8);
+  }
 
   // Offset from rsp (which points to the last stack element)
   static int expr_offset_in_bytes(int i) { return stackElementSize * i; }