From 7fede744676d9875a5acba364ad1eba7c4b595d8 Mon Sep 17 00:00:00 2001 From: Matthew Poremba Date: Fri, 7 Aug 2020 17:05:03 -0500 Subject: [PATCH] arch-mips: Remove old TypeBufferArg call TypeBufferArg was replaced by VPtr so this call is no longer needed. This fixes the MIPS build / nightly build. Change-Id: I3880229fa0ad87fad1ca35c136e12efc6c36ceda Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/32414 Reviewed-by: Gabe Black Maintainer: Gabe Black Tested-by: kokoro --- src/arch/mips/linux/process.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/arch/mips/linux/process.cc b/src/arch/mips/linux/process.cc index 8f1ec1621..600d05363 100644 --- a/src/arch/mips/linux/process.cc +++ b/src/arch/mips/linux/process.cc @@ -127,7 +127,6 @@ sys_setsysinfoFunc(SyscallDesc *desc, ThreadContext *tc, unsigned op, // SSI_IEEE_FP_CONTROL ConstVPtr fpcr(bufPtr, tc); // I don't think this exactly matches the HW FPCR - fpcr.copyIn(tc->getVirtProxy()); DPRINTFR(SyscallVerbose, "sys_setsysinfo(SSI_IEEE_FP_CONTROL): " " setting FPCR to 0x%x\n", letoh(*fpcr)); return 0; -- 2.30.2