mips: make getArgument inline so mips will link properly
authorNathan Binkert <nate@binkert.org>
Wed, 1 Aug 2007 23:57:29 +0000 (16:57 -0700)
committerNathan Binkert <nate@binkert.org>
Wed, 1 Aug 2007 23:57:29 +0000 (16:57 -0700)
--HG--
extra : convert_revision : 7fdbf1f35a5fcbd8704bf02aafcb3ea069626ce3

src/arch/mips/utility.hh

index 300761c931f0f6a47951a3759598427bc34e7b8c..5cf38afbccb814bbbeb41d516b67593c88b3f49b 100644 (file)
@@ -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");
     }