From e0441fa7a7c858d7e472fbb1e03089a9a11b8462 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 24 Jan 2021 21:58:59 -0800 Subject: [PATCH] arch-arm: Don't use TheISA in the ARM implementation. We know what ISA we're using, so we can use ArmISA directly. Change-Id: I7d207eea2581bae8be3e870883de88bf2879ef12 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/39657 Reviewed-by: Giacomo Travaglini Maintainer: Giacomo Travaglini Tested-by: kokoro --- src/arch/arm/tracers/tarmac_parser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/arm/tracers/tarmac_parser.cc b/src/arch/arm/tracers/tarmac_parser.cc index 6521b2737..332534276 100644 --- a/src/arch/arm/tracers/tarmac_parser.cc +++ b/src/arch/arm/tracers/tarmac_parser.cc @@ -828,7 +828,7 @@ TarmacParserRecord::TarmacParserRecordEvent::process() case REG_Z: { int8_t i = maxVectorLength; - const TheISA::VecRegContainer& vc = thread->readVecReg( + const ArmISA::VecRegContainer& vc = thread->readVecReg( RegId(VecRegClass, it->index)); auto vv = vc.as(); while (i > 0) { -- 2.30.2