From: Rune Holm Date: Tue, 9 Jun 2015 13:21:16 +0000 (-0400) Subject: arm: Delete debug print in initialization of hardware thread X-Git-Tag: stable_2015_09_03~5 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb3ed11794667975476a4ec3b070e215c2c5dc12;p=gem5.git arm: Delete debug print in initialization of hardware thread There seems to have been a debug print left in when the original ARMv8 support was merged in. This printout is performed every time you initialize a hardware thread, and it prints raw pointers, so it always causes diffs in the regression. This patch removes the debug print. --- diff --git a/src/arch/arm/isa.cc b/src/arch/arm/isa.cc index 2120c56db..bac7bab89 100644 --- a/src/arch/arm/isa.cc +++ b/src/arch/arm/isa.cc @@ -144,7 +144,6 @@ ISA::ISA(Params *p) pmu->setISA(this); system = dynamic_cast(p->system); - DPRINTFN("ISA system set to: %p %p\n", system, p->system); // Cache system-level properties if (FullSystem && system) {