From: Christian Thalinger Date: Mon, 17 Mar 2008 09:56:12 +0000 (+0100) Subject: * src/vm/jit/m68k/md.h: Replaced codegen_get_pv_from_pc with X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=4072ea546eeba16343fa3733a28479a2ffa53d90;p=cacao.git * src/vm/jit/m68k/md.h: Replaced codegen_get_pv_from_pc with methodtree_find. --HG-- branch : methodtree-branch --- diff --git a/src/vm/jit/m68k/md.h b/src/vm/jit/m68k/md.h index 3ef67014e..bc64f4c73 100644 --- a/src/vm/jit/m68k/md.h +++ b/src/vm/jit/m68k/md.h @@ -34,6 +34,7 @@ #include #include "vm/jit/codegen-common.h" +#include "vm/jit/methodtree.h" /* md_stacktrace_get_returnaddress ********************************************* @@ -48,8 +49,7 @@ void *md_stacktrace_get_returnaddress(void *sp, int32_t stackframesize); /* md_codegen_get_pv_from_pc *************************************************** - On this architecture just a wrapper function to - codegen_get_pv_from_pc. + On this architecture just a wrapper function to methodtree_find. *******************************************************************************/ @@ -57,7 +57,7 @@ inline static void *md_codegen_get_pv_from_pc(void *ra) { void *pv; - pv = codegen_get_pv_from_pc(ra); + pv = methodtree_find(ra); return pv; }