diff options
author | Nathan Binkert <nate@binkert.org> | 2008-09-19 09:42:54 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-09-19 09:42:54 -0700 |
commit | 4826610d8604e8ce828ebefd9d25f5ef637c3630 (patch) | |
tree | 26ccb18be2e1770c3b1c482417f5abaebfd806d6 /src/arch | |
parent | ce3d8c2b038605fa5ceb6d1ad8e27b51c1aca980 (diff) | |
download | gem5-4826610d8604e8ce828ebefd9d25f5ef637c3630.tar.xz |
We're using the static keyword improperly in some cases.
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/alpha/utility.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/alpha/utility.hh b/src/arch/alpha/utility.hh index 11357bc44..ddbf88e95 100644 --- a/src/arch/alpha/utility.hh +++ b/src/arch/alpha/utility.hh @@ -44,7 +44,7 @@ namespace AlphaISA uint64_t getArgument(ThreadContext *tc, int number, bool fp); - static inline bool + inline bool inUserMode(ThreadContext *tc) { return (tc->readMiscRegNoEffect(AlphaISA::IPR_DTB_CM) & 0x18) != 0; |