Index: src/mips/full-codegen-mips.cc |
diff --git a/src/mips/full-codegen-mips.cc b/src/mips/full-codegen-mips.cc |
index eaf6414af739d249040608e2d48d0d57ae8b37bb..3f5ea7b914a9a2e5b769190993579bfad3984084 100644 |
--- a/src/mips/full-codegen-mips.cc |
+++ b/src/mips/full-codegen-mips.cc |
@@ -2784,13 +2784,12 @@ void FullCodeGenerator::EmitLog(ZoneList<Expression*>* args) { |
// with '%2s' (see Logger::LogRuntime for all the formats). |
// 2 (array): Arguments to the format string. |
ASSERT_EQ(args->length(), 3); |
-#ifdef ENABLE_LOGGING_AND_PROFILING |
if (CodeGenerator::ShouldGenerateLog(args->at(0))) { |
VisitForStackValue(args->at(1)); |
VisitForStackValue(args->at(2)); |
__ CallRuntime(Runtime::kLog, 2); |
} |
-#endif |
+ |
// Finally, we're expected to leave a value on the top of the stack. |
__ LoadRoot(v0, Heap::kUndefinedValueRootIndex); |
context()->Plug(v0); |