From dc0e629ea1f074691d307cde3ab7dd51a5e2102f Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 29 Jan 2012 02:04:34 -0800 Subject: Implement Ali's review feedback. Try to decrease indentation, and remove some redundant FullSystem checks. --- src/cpu/simple/base.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/simple') diff --git a/src/cpu/simple/base.hh b/src/cpu/simple/base.hh index 6272560a1..0e5526040 100644 --- a/src/cpu/simple/base.hh +++ b/src/cpu/simple/base.hh @@ -396,8 +396,8 @@ class BaseSimpleCPU : public BaseCPU { if (FullSystem) panic("Syscall emulation isn't available in FS mode.\n"); - else - thread->syscall(callnum); + + thread->syscall(callnum); } bool misspeculating() { return thread->misspeculating(); } -- cgit v1.2.3