From b859a7030d883cc208347387b19285c53b64fb54 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 20 Nov 2018 16:58:19 -0800 Subject: x86: Stop using/defining some ISA specific register types. These have been replaced with the generic RegVal type. Change-Id: I75c1134212067dea43aa0903d813633e06f3d6c6 Reviewed-on: https://gem5-review.googlesource.com/c/14476 Reviewed-by: Gabe Black Maintainer: Gabe Black --- src/arch/x86/insts/micromediaop.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/x86/insts') diff --git a/src/arch/x86/insts/micromediaop.hh b/src/arch/x86/insts/micromediaop.hh index 1fe871752..6bbfc510b 100644 --- a/src/arch/x86/insts/micromediaop.hh +++ b/src/arch/x86/insts/micromediaop.hh @@ -72,7 +72,7 @@ namespace X86ISA int numItems(int size) const { - return scalarOp() ? 1 : (sizeof(FloatReg) / size); + return scalarOp() ? 1 : (sizeof(uint64_t) / size); } bool -- cgit v1.2.3