Hide execution traces (they are getting long...)

This commit is contained in:
Scott Olson 2016-03-21 04:19:27 -06:00
parent 3cb200a2ba
commit 59e25cc52c

View File

@ -21,7 +21,7 @@ use error::{EvalError, EvalResult};
use memory::{self, FieldRepr, Memory, Pointer, Repr};
use primval::{self, PrimVal};
const TRACE_EXECUTION: bool = true;
const TRACE_EXECUTION: bool = false;
struct Interpreter<'a, 'tcx: 'a, 'arena> {
/// The results of the type checker, from rustc.