From a89c1bed26fd05fc25034e43901c7f03351721a2 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Fri, 3 Nov 2017 01:50:46 -0700 Subject: 4104 Stop hardcoding Max_depth everywhere; we had a default value for a reason but then we forgot all about it. --- 020run.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '020run.cc') diff --git a/020run.cc b/020run.cc index d1bc77f4..0da9fba7 100644 --- a/020run.cc +++ b/020run.cc @@ -295,7 +295,7 @@ vector read_memory(reagent/*copy*/ x) { int size = size_of(x); for (int offset = 0; offset < size; ++offset) { double val = get_or_insert(Memory, x.value+offset); - trace(9999, "mem") << "location " << x.value+offset << " is " << no_scientific(val) << end(); + trace("mem") << "location " << x.value+offset << " is " << no_scientific(val) << end(); result.push_back(val); } return result; @@ -322,7 +322,7 @@ void write_memory(reagent/*copy*/ x, const vector& data) { // End write_memory(x) Special-cases for (int offset = 0; offset < SIZE(data); ++offset) { assert(x.value+offset > 0); - trace(9999, "mem") << "storing " << no_scientific(data.at(offset)) << " in location " << x.value+offset << end(); + trace("mem") << "storing " << no_scientific(data.at(offset)) << " in location " << x.value+offset << end(); put(Memory, x.value+offset, data.at(offset)); } } -- cgit 1.4.1-2-gfad0