Index: src/ic/ic.cc |
diff --git a/src/ic/ic.cc b/src/ic/ic.cc |
index fa04e0fca0a770b9a4ece9b9406d3b9cbf127f39..ab5ec1074d45f8a69a454fb9928952b2d1ad3bb2 100644 |
--- a/src/ic/ic.cc |
+++ b/src/ic/ic.cc |
@@ -2658,24 +2658,6 @@ RUNTIME_FUNCTION(Runtime_KeyedLoadIC_Miss) { |
RETURN_RESULT_OR_FAILURE(isolate, ic.Load(receiver, key)); |
} |
- |
-RUNTIME_FUNCTION(Runtime_KeyedLoadIC_MissFromStubFailure) { |
- HandleScope scope(isolate); |
- typedef LoadWithVectorDescriptor Descriptor; |
- DCHECK_EQ(Descriptor::kParameterCount, args.length()); |
- Handle<Object> receiver = args.at(Descriptor::kReceiver); |
- Handle<Object> key = args.at(Descriptor::kName); |
- Handle<Smi> slot = args.at<Smi>(Descriptor::kSlot); |
- Handle<TypeFeedbackVector> vector = |
- args.at<TypeFeedbackVector>(Descriptor::kVector); |
- FeedbackVectorSlot vector_slot = vector->ToSlot(slot->value()); |
- KeyedLoadICNexus nexus(vector, vector_slot); |
- KeyedLoadIC ic(IC::EXTRA_CALL_FRAME, isolate, &nexus); |
- ic.UpdateState(receiver, key); |
- RETURN_RESULT_OR_FAILURE(isolate, ic.Load(receiver, key)); |
-} |
- |
- |
// Used from ic-<arch>.cc. |
RUNTIME_FUNCTION(Runtime_StoreIC_Miss) { |
HandleScope scope(isolate); |