| Index: src/virtual-frame.cc
|
| ===================================================================
|
| --- src/virtual-frame.cc (revision 1913)
|
| +++ src/virtual-frame.cc (working copy)
|
| @@ -35,20 +35,6 @@
|
| // -------------------------------------------------------------------------
|
| // VirtualFrame implementation.
|
|
|
| -VirtualFrame::SpilledScope::SpilledScope(CodeGenerator* cgen)
|
| - : cgen_(cgen),
|
| - previous_state_(cgen->in_spilled_code()) {
|
| - ASSERT(cgen->has_valid_frame());
|
| - cgen->frame()->SpillAll();
|
| - cgen->set_in_spilled_code(true);
|
| -}
|
| -
|
| -
|
| -VirtualFrame::SpilledScope::~SpilledScope() {
|
| - cgen_->set_in_spilled_code(previous_state_);
|
| -}
|
| -
|
| -
|
| // When cloned, a frame is a deep copy of the original.
|
| VirtualFrame::VirtualFrame(VirtualFrame* original)
|
| : cgen_(original->cgen_),
|
|
|