arm: Delete debug print in initialization of hardware thread
authorRune Holm <rune.holm@arm.com>
Tue, 9 Jun 2015 13:21:16 +0000 (09:21 -0400)
committerRune Holm <rune.holm@arm.com>
Tue, 9 Jun 2015 13:21:16 +0000 (09:21 -0400)
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.

src/arch/arm/isa.cc

index 2120c56db05c958bbd5bb3dca5bdfc2143e69e3f..bac7bab89fa74c52b6cfbb51a35a4a0a2a1647a4 100644 (file)
@@ -144,7 +144,6 @@ ISA::ISA(Params *p)
     pmu->setISA(this);
 
     system = dynamic_cast<ArmSystem *>(p->system);
-    DPRINTFN("ISA system set to: %p %p\n", system, p->system);
 
     // Cache system-level properties
     if (FullSystem && system) {