Chromium Code Reviews| Index: src/interpreter/interpreter.cc |
| diff --git a/src/interpreter/interpreter.cc b/src/interpreter/interpreter.cc |
| index c47342e4b0d9976f222231984c53f97f7ff0d8a0..27c0b0868279a951b79566436bab5d6a6f029d1f 100644 |
| --- a/src/interpreter/interpreter.cc |
| +++ b/src/interpreter/interpreter.cc |
| @@ -1141,7 +1141,7 @@ void Interpreter::DoLogicalNot(InterpreterAssembler* assembler) { |
| // Load the accumulator with the string representating type of the |
| // object in the accumulator. |
| void Interpreter::DoTypeOf(InterpreterAssembler* assembler) { |
| - DoUnaryOp(CodeFactory::Typeof(isolate_), assembler); |
| + DoUnaryOp<TypeofStub>(assembler); |
|
Benedikt Meurer
2016/08/02 04:53:36
I think the untemplated DoUnaryOp is dead code now
|
| } |
| void Interpreter::DoDelete(Runtime::FunctionId function_id, |