From 1450b12e5b3189b78988ad27538601e24c1789cf Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Sat, 31 May 2008 16:24:32 -0600 Subject: [PATCH] visit thunk objects during GC in MyProcessor::visitObjects --- src/compile.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/compile.cpp b/src/compile.cpp index 0a61e7a3c8..283a965f59 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -4740,6 +4740,10 @@ class MyProcessor: public Processor { MyThread* t = static_cast(vmt); if (t == t->m->rootThread) { + v->visit(&defaultThunk); + v->visit(&nativeThunk); + v->visit(&aioobThunk); + v->visit(&thunkTable); v->visit(&callTable); v->visit(&methodTree); v->visit(&methodTreeSentinal);