Index: src/ic/ic.cc |
diff --git a/src/ic/ic.cc b/src/ic/ic.cc |
index 46bd43541762a1956e37b96ddfd8152fed72d8e0..057792e483c1a97544b015e1be6455cba2d7c6db 100644 |
--- a/src/ic/ic.cc |
+++ b/src/ic/ic.cc |
@@ -3189,6 +3189,20 @@ RUNTIME_FUNCTION(LoadElementWithInterceptor) { |
} |
+RUNTIME_FUNCTION(VectorLoadIC_MissFromStubFailure) { |
+ // TODO(mvstanton): To be enabled when ICs can accept a vector and slot |
+ DCHECK(!"Not yet implemented"); |
+ return NULL; |
+} |
+ |
+ |
+RUNTIME_FUNCTION(VectorKeyedLoadIC_MissFromStubFailure) { |
+ // TODO(mvstanton): To be enabled when ICs can accept a vector and slot |
+ DCHECK(!"Not yet implemented"); |
+ return NULL; |
+} |
+ |
+ |
static const Address IC_utilities[] = { |
#define ADDR(name) FUNCTION_ADDR(name), |
IC_UTIL_LIST(ADDR) NULL |