summaryrefslogtreecommitdiff
path: root/src/arch/sparc/process.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/sparc/process.hh')
-rw-r--r--src/arch/sparc/process.hh11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/arch/sparc/process.hh b/src/arch/sparc/process.hh
index 2d68fb3fc..4ad8bb804 100644
--- a/src/arch/sparc/process.hh
+++ b/src/arch/sparc/process.hh
@@ -46,7 +46,7 @@ class SparcLiveProcess : public LiveProcess
const Addr StackBias;
- //The locations of the fill and spill handlers
+ // The locations of the fill and spill handlers
Addr fillStart, spillStart;
SparcLiveProcess(LiveProcessParams * params,
@@ -59,14 +59,11 @@ class SparcLiveProcess : public LiveProcess
public:
- //Handles traps which request services from the operating system
+ // Handles traps which request services from the operating system
virtual void handleTrap(int trapNum, ThreadContext *tc);
- Addr readFillStart()
- { return fillStart; }
-
- Addr readSpillStart()
- { return spillStart; }
+ Addr readFillStart() { return fillStart; }
+ Addr readSpillStart() { return spillStart; }
virtual void flushWindows(ThreadContext *tc) = 0;
void setSyscallReturn(ThreadContext *tc, SyscallReturn return_value);