| Index: src/runtime/runtime-interpreter.cc
|
| diff --git a/src/runtime/runtime-interpreter.cc b/src/runtime/runtime-interpreter.cc
|
| index f1525f1a88e7675d3d70a473157756cf0df47661..9c53317b4af7cbeec67a3634b96555f4ed803f0f 100644
|
| --- a/src/runtime/runtime-interpreter.cc
|
| +++ b/src/runtime/runtime-interpreter.cc
|
| @@ -16,22 +16,6 @@
|
| namespace v8 {
|
| namespace internal {
|
|
|
| -RUNTIME_FUNCTION(Runtime_InterpreterToBoolean) {
|
| - SealHandleScope shs(isolate);
|
| - DCHECK_EQ(1, args.length());
|
| - CONVERT_ARG_CHECKED(Object, x, 0);
|
| - return isolate->heap()->ToBoolean(x->BooleanValue());
|
| -}
|
| -
|
| -
|
| -RUNTIME_FUNCTION(Runtime_InterpreterLogicalNot) {
|
| - SealHandleScope shs(isolate);
|
| - DCHECK_EQ(1, args.length());
|
| - CONVERT_ARG_CHECKED(Object, x, 0);
|
| - return isolate->heap()->ToBoolean(!x->BooleanValue());
|
| -}
|
| -
|
| -
|
| RUNTIME_FUNCTION(Runtime_InterpreterNewClosure) {
|
| HandleScope scope(isolate);
|
| DCHECK_EQ(2, args.length());
|
|
|