Index: src/x64/lithium-x64.cc |
diff --git a/src/x64/lithium-x64.cc b/src/x64/lithium-x64.cc |
index 974a97017cbcbec11338feaf1b5523bb56ee40fb..480adf865040b7e2d858b742a95598ced8d8c57d 100644 |
--- a/src/x64/lithium-x64.cc |
+++ b/src/x64/lithium-x64.cc |
@@ -1223,8 +1223,7 @@ LInstruction* LChunkBuilder::DoMathLog(HUnaryMathOperation* instr) { |
ASSERT(instr->representation().IsDouble()); |
ASSERT(instr->value()->representation().IsDouble()); |
LOperand* input = UseRegisterAtStart(instr->value()); |
- LMathLog* result = new(zone()) LMathLog(input); |
- return DefineSameAsFirst(result); |
+ return MarkAsCall(DefineSameAsFirst(new(zone()) LMathLog(input)), instr); |
} |