From 0aeb8fe4199fe65a3e3d19cc359aae9ebac94c49 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Mon, 24 Aug 2009 09:41:11 +1000 Subject: [PATCH] Bustage fix for optimised builds for bug 511329. --- js/src/nanojit/Assembler.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/src/nanojit/Assembler.cpp b/js/src/nanojit/Assembler.cpp index 08ce77e6c1a..9a2ae0510cc 100644 --- a/js/src/nanojit/Assembler.cpp +++ b/js/src/nanojit/Assembler.cpp @@ -1306,6 +1306,7 @@ namespace nanojit } } +#ifdef NJ_VERBOSE // We have to do final LIR printing inside this loop. If we do it // before this loop, we we end up printing a lot of dead LIR // instructions. @@ -1328,6 +1329,7 @@ namespace nanojit _thisfrag->lirbuf->names->formatIns(ins->oprnd1())); } } +#endif if (error()) return;