aboutsummaryrefslogtreecommitdiff
path: root/libjava/boehm.cc
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2005-03-17 02:53:21 +0000
committerBryce McKinlay <bryce@gcc.gnu.org>2005-03-17 02:53:21 +0000
commitfa41042fffc4553e12fcbaf3fa21b50736274e56 (patch)
tree20a84c0957eba2a04e7e97bd517ebcfbae8b452a /libjava/boehm.cc
parent5aa9bbc41710e038829035a6756d10c2b294601c (diff)
downloadgcc-fa41042fffc4553e12fcbaf3fa21b50736274e56.zip
gcc-fa41042fffc4553e12fcbaf3fa21b50736274e56.tar.gz
gcc-fa41042fffc4553e12fcbaf3fa21b50736274e56.tar.bz2
boehm.cc (_Jv_MarkObj): Mark the interpreted method line_table.
2005-03-16 Andrew Haley <aph@redhat.com> * boehm.cc (_Jv_MarkObj): Mark the interpreted method line_table. From-SVN: r96596
Diffstat (limited to 'libjava/boehm.cc')
-rw-r--r--libjava/boehm.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libjava/boehm.cc b/libjava/boehm.cc
index d290232..45b9473 100644
--- a/libjava/boehm.cc
+++ b/libjava/boehm.cc
@@ -289,6 +289,8 @@ _Jv_MarkObj (void *addr, void *msp, void *msl, void *env)
= (_Jv_InterpMethod *) ic->interpreted_methods[i];
if (im)
{
+ p = (GC_PTR) im->line_table;
+ MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, ic);
p = (GC_PTR) im->prepared;
MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, ic);
}