From 906fc4cd013ee1fb5d50a1a6fb3b695887482fad Mon Sep 17 00:00:00 2001 From: "sgjesse@chromium.org" Date: Tue, 14 Jun 2011 09:10:39 +0000 Subject: [PATCH] Always print the deoptimization data when disassembling the generated code R=jkummerow@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org//7003093 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8273 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/objects.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/objects.cc b/src/objects.cc index 610301f..871913f 100644 --- a/src/objects.cc +++ b/src/objects.cc @@ -7056,7 +7056,6 @@ void Code::Disassemble(const char* name, FILE* out) { Disassembler::Decode(out, this); PrintF(out, "\n"); -#ifdef DEBUG if (kind() == FUNCTION) { DeoptimizationOutputData* data = DeoptimizationOutputData::cast(this->deoptimization_data()); @@ -7067,7 +7066,6 @@ void Code::Disassemble(const char* name, FILE* out) { data->DeoptimizationInputDataPrint(out); } PrintF("\n"); -#endif if (kind() == OPTIMIZED_FUNCTION) { SafepointTable table(this); -- 2.7.4