Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 8c206c91a4305371c7a14da9b237657543bdab88..3af41fa5e279ff27ef7a72a58b50a4d3fa909cdb 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -43,8 +43,6 @@ void Interpreter::Initialize(Isolate* isolate, bool create_heap_objects) { |
} |
-// Load literal '0' into the register index specified by the bytecode's |
-// argument. |
rmcilroy
2015/07/16 10:29:44
Did you mean to drop this comment?
oth
2015/07/16 13:14:39
Nope. Fixed.
|
void Interpreter::DoLoadLiteral0(compiler::InterpreterAssembler* assembler) { |
Node* register_index = __ BytecodeArg(0); |
__ StoreRegister(__ NumberConstant(0), register_index); |