Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 5c81906a7e19bd664442c2e6e93a25902c03b8b9..809f062fc4b1af689f571104c46cf920b59f323b 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -256,6 +256,13 @@ void BytecodeGraphBuilder::VisitStar( |
} |
+void BytecodeGraphBuilder::VisitMov( |
+ const interpreter::BytecodeArrayIterator& iterator) { |
+ Node* value = environment()->LookupRegister(iterator.GetRegisterOperand(0)); |
+ environment()->BindRegister(iterator.GetRegisterOperand(1), value); |
+} |
+ |
+ |
void BytecodeGraphBuilder::VisitLdaGlobalSloppy( |
const interpreter::BytecodeArrayIterator& iterator) { |
UNIMPLEMENTED(); |