From: Nathan Binkert Date: Wed, 1 Aug 2007 23:57:29 +0000 (-0700) Subject: mips: make getArgument inline so mips will link properly X-Git-Tag: m5_2.0_beta4~210 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a3e70f495749334670e9fa392c4212794707d0d8;p=gem5.git mips: make getArgument inline so mips will link properly --HG-- extra : convert_revision : 7fdbf1f35a5fcbd8704bf02aafcb3ea069626ce3 --- diff --git a/src/arch/mips/utility.hh b/src/arch/mips/utility.hh index 300761c93..5cf38afbc 100644 --- a/src/arch/mips/utility.hh +++ b/src/arch/mips/utility.hh @@ -48,7 +48,9 @@ class ThreadContext; namespace MipsISA { - uint64_t getArgument(ThreadContext *tc, bool fp) { + inline uint64_t + getArgument(ThreadContext *tc, bool fp) + { panic("getArgument() not implemented for MIPS\n"); }