$OpenBSD: patch-hotspot_src_cpu_i486_vm_frame_i486_hpp,v 1.1 2006/01/22 22:46:31 kurt Exp $
--- hotspot/src/cpu/i486/vm/frame_i486.hpp.orig	Thu Jan 19 22:41:49 2006
+++ hotspot/src/cpu/i486/vm/frame_i486.hpp	Thu Jan 19 22:16:54 2006
@@ -66,17 +66,17 @@
 
  private:
   // an additional field beyond _sp and _pc:
-  jint*   _fp; // frame pointer
+  intptr_t*   _fp; // frame pointer
 
  public:
   // Constructors
-  frame(jint* sp, jint* fp, address pc) { 
+  frame(intptr_t* sp, intptr_t* fp, address pc) { 
     _sp = sp;
     _fp = fp;
     _pc = pc;
   }
 
-  frame(jint* sp, jint* fp) {
+  frame(intptr_t* sp, intptr_t* fp) {
     _sp = sp;
     _fp = fp;
     _pc = (address)(sp[-1]);
@@ -86,7 +86,7 @@
   }
 
   // accessors for the instance variables
-  jint*   fp() const { return _fp; }
+  intptr_t*   fp() const { return _fp; }
 
   void    patch_pc(Thread* thread, address pc);
 
