Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 019ded491323104b37f27567436d44aeea31688c..1b73465ec5ccfa9d5468b22f890a24d65b993287 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -261,24 +261,48 @@ void BytecodeGraphBuilder::VisitLoadIC( |
} |
+void BytecodeGraphBuilder::VisitLoadICStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitKeyedLoadIC( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |
} |
+void BytecodeGraphBuilder::VisitKeyedLoadICStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitStoreIC( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |
} |
+void BytecodeGraphBuilder::VisitStoreICStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitKeyedStoreIC( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |
} |
+void BytecodeGraphBuilder::VisitKeyedStoreICStrict( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ UNIMPLEMENTED(); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitCall( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |