| Index: src/ic.cc
|
| ===================================================================
|
| --- src/ic.cc (revision 16038)
|
| +++ src/ic.cc (working copy)
|
| @@ -2589,27 +2589,6 @@
|
| }
|
|
|
|
|
| -MaybeObject* UnaryOpIC::Transition(Handle<Object> object) {
|
| - Code::ExtraICState extra_ic_state = target()->extended_extra_ic_state();
|
| - UnaryOpStub stub(extra_ic_state);
|
| -
|
| - stub.UpdateStatus(object);
|
| -
|
| - Handle<Code> code = stub.GetCode(isolate());
|
| - set_target(*code);
|
| -
|
| - return stub.Result(object, isolate());
|
| -}
|
| -
|
| -
|
| -RUNTIME_FUNCTION(MaybeObject*, UnaryOpIC_Miss) {
|
| - HandleScope scope(isolate);
|
| - Handle<Object> object = args.at<Object>(0);
|
| - UnaryOpIC ic(isolate);
|
| - return ic.Transition(object);
|
| -}
|
| -
|
| -
|
| static BinaryOpIC::TypeInfo TypeInfoFromValue(Handle<Object> value,
|
| Token::Value op) {
|
| v8::internal::TypeInfo type = v8::internal::TypeInfo::FromValue(value);
|
|
|