| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 0a8fbebfb0cd0ae3c316438ae79d432d55818a71..17784181bdd3d37ee454a8cd6364597faeffc496 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -7245,15 +7245,6 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_NumberXor) {
|
| }
|
|
|
|
|
| -RUNTIME_FUNCTION(MaybeObject*, Runtime_NumberNot) {
|
| - SealHandleScope shs(isolate);
|
| - ASSERT(args.length() == 1);
|
| -
|
| - CONVERT_NUMBER_CHECKED(int32_t, x, Int32, args[0]);
|
| - return isolate->heap()->NumberFromInt32(~x);
|
| -}
|
| -
|
| -
|
| RUNTIME_FUNCTION(MaybeObject*, Runtime_NumberShl) {
|
| SealHandleScope shs(isolate);
|
| ASSERT(args.length() == 2);
|
|
|