From a9af2e8810618e21a71cf494fc316c2110488045 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 30 Jul 2021 02:19:14 -0700 Subject: [PATCH] sim: Don't serialize a root.isa string in checkpoints. We are moving away from having a single ISA in a simulation. That means it will no longer make sense to have a single, particular ISA at the root of the object hierarchy which applies to the entire simulation. Jira Issue: https://gem5.atlassian.net/browse/GEM5-1056 Change-Id: If4d354ac423e7ab4d3efbc6544d4feea93f56ab3 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/48884 Reviewed-by: Daniel Carvalho Maintainer: Gabe Black Tested-by: kokoro --- src/sim/root.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/sim/root.cc b/src/sim/root.cc index ef35ed9fae..e53f09d883 100644 --- a/src/sim/root.cc +++ b/src/sim/root.cc @@ -42,7 +42,6 @@ #include "base/hostinfo.hh" #include "base/logging.hh" #include "base/trace.hh" -#include "config/the_isa.hh" #include "debug/TimeSync.hh" #include "sim/core.hh" #include "sim/cur_tick.hh" @@ -206,8 +205,6 @@ void Root::serialize(CheckpointOut &cp) const { SERIALIZE_SCALAR(FullSystem); - std::string isa = THE_ISA_STR; - SERIALIZE_SCALAR(isa); globals.serializeSection(cp, "globals"); }