diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2005-03-10 02:01:43 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2005-03-10 02:01:43 -0500 |
commit | 9797eedeead30f93d9a34583197c4f11b341c04f (patch) | |
tree | 14cf54c4e5ddd240e5b4bc28719ed10bd2890f26 /arch | |
parent | 28976656858f59dd52c3d9291c167264989f944c (diff) | |
download | gem5-9797eedeead30f93d9a34583197c4f11b341c04f.tar.xz |
fix typo in SyscallReturn Object
--HG--
extra : convert_revision : 97d34a02a29a9ac3e2256d92194e3a46b9e8021e
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/isa_traits.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/alpha/isa_traits.hh b/arch/alpha/isa_traits.hh index 3208b0cb3..d9c1a506e 100644 --- a/arch/alpha/isa_traits.hh +++ b/arch/alpha/isa_traits.hh @@ -311,8 +311,8 @@ class SyscallReturn { return *this; } - uint64_t successful() { return success; } - bool value() { return retval; } + bool successful() { return success; } + uint64_t value() { return retval; } private: |