| Index: src/jump-target-light.cc
|
| ===================================================================
|
| --- src/jump-target-light.cc (revision 7267)
|
| +++ src/jump-target-light.cc (working copy)
|
| @@ -35,15 +35,15 @@
|
|
|
|
|
| DeferredCode::DeferredCode()
|
| - : masm_(CodeGeneratorScope::Current()->masm()),
|
| + : masm_(CodeGeneratorScope::Current(Isolate::Current())->masm()),
|
| statement_position_(masm_->positions_recorder()->
|
| current_statement_position()),
|
| position_(masm_->positions_recorder()->current_position()),
|
| - frame_state_(*CodeGeneratorScope::Current()->frame()) {
|
| + frame_state_(*CodeGeneratorScope::Current(Isolate::Current())->frame()) {
|
| ASSERT(statement_position_ != RelocInfo::kNoPosition);
|
| ASSERT(position_ != RelocInfo::kNoPosition);
|
|
|
| - CodeGeneratorScope::Current()->AddDeferred(this);
|
| + CodeGeneratorScope::Current(Isolate::Current())->AddDeferred(this);
|
|
|
| #ifdef DEBUG
|
| comment_ = "";
|
|
|