src/cpu/ppc/vm/frame_ppc.cpp

Print this page
rev 7023 : 8058345: Refactor native stack printing from vmError.cpp to debug.cpp to make it available in gdb as well

@@ -306,5 +306,11 @@
 
 intptr_t *frame::initial_deoptimization_info() {
   // unused... but returns fp() to minimize changes introduced by 7087445
   return fp();
 }
+
+#ifndef PRODUCT
+extern "C" frame make_frame(intptr_t* sp, address pc) {
+  return frame(sp, pc);
+}
+#endif