Backed out changeset b142c62e7602

This commit is contained in:
Andreas Gal 2008-06-20 14:29:10 -07:00
parent f086d675e7
commit dbab3f5a43
2 changed files with 1 additions and 9 deletions

View File

@ -116,14 +116,6 @@ namespace nanojit
Assembler::Assembler(Fragmento* frago) Assembler::Assembler(Fragmento* frago)
: _frago(frago) : _frago(frago)
, _gc(frago->core()->gc) , _gc(frago->core()->gc)
, _thisfrag(NULL)
, _branchStateMap(NULL)
, _latestGuard(NULL)
, _functions(NULL)
, _nIns(NULL)
, _nExitIns(NULL)
, _nativePages(NULL)
, _nativeExitPages(NULL)
{ {
AvmCore *core = frago->core(); AvmCore *core = frago->core();
nInit(core); nInit(core);

View File

@ -46,7 +46,7 @@ namespace nanojit
/** /**
* This is the main control center for creating and managing fragments. * This is the main control center for creating and managing fragments.
*/ */
Fragmento::Fragmento(AvmCore* core) : _pageList(NULL), _allocList(core->GetGC()) Fragmento::Fragmento(AvmCore* core) : _allocList(core->GetGC())
{ {
_core = core; _core = core;
GC *gc = core->GetGC(); GC *gc = core->GetGC();