summaryrefslogtreecommitdiff
path: root/src/arch/mips
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2007-08-01 16:58:22 -0700
committerNathan Binkert <nate@binkert.org>2007-08-01 16:58:22 -0700
commitf20ba92a76c97d520b625d9ff6a962df1a875f23 (patch)
tree4e6ff6818b534f9397da3579334760a4ac862824 /src/arch/mips
parentbaa118251350d11f0a7a4e5b007cd120c9c1655b (diff)
parenta3e70f495749334670e9fa392c4212794707d0d8 (diff)
downloadgem5-f20ba92a76c97d520b625d9ff6a962df1a875f23.tar.xz
merge: mips fix to getArgument
--HG-- extra : convert_revision : 0e97c80ca9bdd354f537bf5d036e024da0081306
Diffstat (limited to 'src/arch/mips')
-rw-r--r--src/arch/mips/utility.hh4
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");
}