From a3e70f495749334670e9fa392c4212794707d0d8 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Wed, 1 Aug 2007 16:57:29 -0700 Subject: [PATCH] mips: make getArgument inline so mips will link properly --HG-- extra : convert_revision : 7fdbf1f35a5fcbd8704bf02aafcb3ea069626ce3 --- src/arch/mips/utility.hh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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"); }