From: Matthew Poremba Date: Fri, 7 Aug 2020 22:05:03 +0000 (-0500) Subject: arch-mips: Remove old TypeBufferArg call X-Git-Tag: v20.1.0.0~333 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7fede744676d9875a5acba364ad1eba7c4b595d8;p=gem5.git 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 --- 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;