| Index: src/type-info.cc
|
| ===================================================================
|
| --- src/type-info.cc (revision 16038)
|
| +++ src/type-info.cc (working copy)
|
| @@ -384,17 +384,6 @@
|
| }
|
|
|
|
|
| -Handle<Type> TypeFeedbackOracle::UnaryType(TypeFeedbackId id) {
|
| - Handle<Object> object = GetInfo(id);
|
| - if (!object->IsCode()) {
|
| - return handle(Type::None(), isolate());
|
| - }
|
| - Handle<Code> code = Handle<Code>::cast(object);
|
| - ASSERT(code->is_unary_op_stub());
|
| - return UnaryOpStub(code->extended_extra_ic_state()).GetType(isolate());
|
| -}
|
| -
|
| -
|
| void TypeFeedbackOracle::BinaryType(TypeFeedbackId id,
|
| Handle<Type>* left,
|
| Handle<Type>* right,
|
|
|