From 41ef1717e096a9e1761efa0df97c395f59c51f16 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 14 Apr 2010 10:34:17 -0700 Subject: Upgrade V8 to 2.2.3.1 --- deps/v8/src/virtual-frame-inl.h | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'deps/v8/src/virtual-frame-inl.h') diff --git a/deps/v8/src/virtual-frame-inl.h b/deps/v8/src/virtual-frame-inl.h index e4c6e6e5e8..c9f4aac183 100644 --- a/deps/v8/src/virtual-frame-inl.h +++ b/deps/v8/src/virtual-frame-inl.h @@ -36,25 +36,4 @@ #include "virtual-frame-light-inl.h" #endif - -namespace v8 { -namespace internal { - -void VirtualFrame::Push(Smi* value) { - Push(Handle (value)); -} - - -void VirtualFrame::Nip(int num_dropped) { - ASSERT(num_dropped >= 0); - if (num_dropped == 0) return; - Result tos = Pop(); - if (num_dropped > 1) { - Drop(num_dropped - 1); - } - SetElementAt(0, &tos); -} - -} } // namespace v8::internal - #endif // V8_VIRTUAL_FRAME_INL_H_ -- cgit v1.2.1