From: Steve Reinhardt Date: Fri, 11 Nov 2005 01:30:04 +0000 (-0500) Subject: Fix Lisa's CPU trace system check for syscall emulation. X-Git-Tag: m5_2.0_beta1~308 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d727c2b6cf68df62a5603da40d86b5f3da81df75;p=gem5.git Fix Lisa's CPU trace system check for syscall emulation. cpu/exetrace.cc: CPU system name check doesn't work under syscall emulation, so don't compile it in. --HG-- extra : convert_revision : 2c128bf759877222107652fd86323be6dc71a34c --- diff --git a/cpu/exetrace.cc b/cpu/exetrace.cc index 3b9853655..8393a1b85 100644 --- a/cpu/exetrace.cc +++ b/cpu/exetrace.cc @@ -52,7 +52,12 @@ void Trace::InstRecord::dump(ostream &outs) { if (flags[INTEL_FORMAT]) { - if (cpu->system->name() == trace_system) { +#if FULL_SYSTEM + bool is_trace_system = (cpu->system->name() == trace_system); +#else + bool is_trace_system = true; +#endif + if (is_trace_system) { ccprintf(outs, "%7d ) ", cycle); outs << "0x" << hex << PC << ":\t"; if (staticInst->isLoad()) {