summaryrefslogtreecommitdiff
path: root/libjava/interpret.cc
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2002-12-06 23:41:38 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2002-12-06 23:41:38 +0000
commit6bf33d149cacc709afaff0883220ba94a658dd42 (patch)
tree17255e0977815a30bda684d2dba5ea831676898f /libjava/interpret.cc
parentd9d51eee63ed3b9f70e0890eeec2a85f6c78215d (diff)
downloadgcc-6bf33d149cacc709afaff0883220ba94a658dd42.tar.gz
* include/java-interp.h (class _Jv_InterpMethod): Added
JV_MARKOBJ_DECL. * boehm.cc (_Jv_MarkObj): Consolidated interpreter code. Also mark `prepared' field of interpreted method. * interpret.cc (compile): Use _Jv_AllocBytes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@59900 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/interpret.cc')
-rw-r--r--libjava/interpret.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/interpret.cc b/libjava/interpret.cc
index bc324b13ba9..9791b4a5cd8 100644
--- a/libjava/interpret.cc
+++ b/libjava/interpret.cc
@@ -312,7 +312,7 @@ _Jv_InterpMethod::compile (const void * const *insn_targets)
if (! first_pass)
{
- insns = (insn_slot *) _Jv_Malloc (sizeof (insn_slot) * next);
+ insns = (insn_slot *) _Jv_AllocBytes (sizeof (insn_slot) * next);
next = 0;
}