diff options
author | Nathan Binkert <nate@binkert.org> | 2007-08-01 16:57:29 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2007-08-01 16:57:29 -0700 |
commit | a3e70f495749334670e9fa392c4212794707d0d8 (patch) | |
tree | 8ce622cd98dd2e35a29455b2930eff94b7540df7 /src/arch/mips | |
parent | 458dfc8b3edc716a7587f3ad7516e6d667e0572e (diff) | |
download | gem5-a3e70f495749334670e9fa392c4212794707d0d8.tar.xz |
mips: make getArgument inline so mips will link properly
--HG--
extra : convert_revision : 7fdbf1f35a5fcbd8704bf02aafcb3ea069626ce3
Diffstat (limited to 'src/arch/mips')
-rw-r--r-- | src/arch/mips/utility.hh | 4 |
1 files changed, 3 insertions, 1 deletions
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"); } |