| Index: src/type-info.cc
|
| diff --git a/src/type-info.cc b/src/type-info.cc
|
| index 1e298452c1bf479e0bd2814f0120940e81704d3b..0ae2423ea59f77cad5d4a72fccde12b09ea62b34 100644
|
| --- a/src/type-info.cc
|
| +++ b/src/type-info.cc
|
| @@ -388,8 +388,7 @@ Handle<Type> TypeFeedbackOracle::UnaryType(TypeFeedbackId id) {
|
| if (!object->IsCode()) return handle(Type::Any(), isolate());
|
| Handle<Code> code = Handle<Code>::cast(object);
|
| ASSERT(code->is_unary_op_stub());
|
| - return UnaryOpIC::TypeInfoToType(
|
| - static_cast<UnaryOpIC::TypeInfo>(code->unary_op_type()), isolate());
|
| + return UnaryOpStub(code->extra_ic_state()).GetType(isolate());
|
| }
|
|
|
|
|
|
|