$OpenBSD: patch-hotspot_src_cpu_i486_vm_javaFrameAnchor_i486_hpp,v 1.1 2006/01/22 22:46:31 kurt Exp $
--- hotspot/src/cpu/i486/vm/javaFrameAnchor_i486.hpp.orig	Thu Jan 19 22:42:17 2006
+++ hotspot/src/cpu/i486/vm/javaFrameAnchor_i486.hpp	Thu Jan 19 22:24:33 2006
@@ -9,7 +9,7 @@
 private:
 
   // FP value associated with _last_Java_sp:
-  jint* volatile        _last_Java_fp;           // pointer is volatile not what it points to
+  intptr_t* volatile        _last_Java_fp;           // pointer is volatile not what it points to
 
 public:
   // Each arch must define reset, save, restore 
@@ -63,9 +63,9 @@ private: 
 public:
 
 
-  jint*   last_Java_fp(void)                     { return _last_Java_fp; }
+  intptr_t*   last_Java_fp(void)                     { return _last_Java_fp; }
   // Assert (last_Java_sp == NULL || fp == NULL)
-  void set_last_Java_fp(jint* fp)                { _last_Java_fp = fp; }
+  void set_last_Java_fp(intptr_t* fp)                { _last_Java_fp = fp; }
 
 
 
