turn off debug logging

This commit is contained in:
Joel Dice 2009-02-01 16:21:55 -07:00
parent 2e3fd111d4
commit 123e22322c

View File

@ -15,14 +15,14 @@ using namespace vm;
namespace { namespace {
const bool DebugAppend = true; const bool DebugAppend = false;
const bool DebugCompile = true; const bool DebugCompile = false;
const bool DebugResources = true; const bool DebugResources = false;
const bool DebugFrame = true; const bool DebugFrame = false;
const bool DebugControl = true; const bool DebugControl = false;
const bool DebugReads = true; const bool DebugReads = false;
const bool DebugSites = false; const bool DebugSites = false;
const bool DebugMoves = true; const bool DebugMoves = false;
const bool DebugBuddies = false; const bool DebugBuddies = false;
const int AnyFrameIndex = -2; const int AnyFrameIndex = -2;
@ -2798,7 +2798,6 @@ class CombineEvent: public Event {
if (live(result)) { if (live(result)) {
addSite(c, result, low); addSite(c, result, low);
fprintf(stderr, "result %p high %p\n", result, result->high);
if (resultSize > BytesPerWord and live(result->high)) { if (resultSize > BytesPerWord and live(result->high)) {
addSite(c, result->high, high); addSite(c, result->high, high);
} }