Index: src/interpreter/interpreter.cc |
diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
index 48b0f3ad12e74b18edb18e48621dce2e9911ad76..5186728fec744c7c9421ecd7ee57ee65523cfcd0 100644 |
--- a/src/interpreter/interpreter.cc |
+++ b/src/interpreter/interpreter.cc |
@@ -1074,17 +1074,6 @@ void Interpreter::DoTestInstanceOf(compiler::InterpreterAssembler* assembler) { |
} |
-// ToBoolean |
-// |
-// Cast the object referenced by the accumulator to a boolean. |
-void Interpreter::DoToBoolean(compiler::InterpreterAssembler* assembler) { |
- Node* accumulator = __ GetAccumulator(); |
- Node* result = __ CallRuntime(Runtime::kInterpreterToBoolean, accumulator); |
- __ SetAccumulator(result); |
- __ Dispatch(); |
-} |
- |
- |
// ToName |
// |
// Cast the object referenced by the accumulator to a name. |