Index: src/ia32/lithium-ia32.cc |
diff --git a/src/ia32/lithium-ia32.cc b/src/ia32/lithium-ia32.cc |
index aca9bdf9f7ce8290c536a60c10424235b2e1adce..6e720f118d498d3bd5086a31a59f03577f169b95 100644 |
--- a/src/ia32/lithium-ia32.cc |
+++ b/src/ia32/lithium-ia32.cc |
@@ -1309,8 +1309,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); |
} |