summaryrefslogtreecommitdiff
path: root/src/arch/riscv
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-01-14 11:44:04 -0800
committerGabe Black <gabeblack@google.com>2018-01-15 06:13:55 +0000
commit3e8d76e2e23ab23d68e569e9b2c4498a06c19f59 (patch)
tree24cd226f1a7327b4969ceabe65faa44d5353df42 /src/arch/riscv
parent5320a97ced43d4452014ff54c0ba45246db90a00 (diff)
downloadgem5-3e8d76e2e23ab23d68e569e9b2c4498a06c19f59.tar.xz
arch: Fix a fatal_if in most of the arch's process classes.
When switching an assert to a fatal while addressing recent review feedback, I forgot to reverse the polarity of the condition, making the fatal fire in exactly the opposite of the conditions it was meant to. Change-Id: Icf49864ef449052bbb0d427dca786006166575c4 Reviewed-on: https://gem5-review.googlesource.com/7381 Reviewed-by: Matthias Jung <jungma@eit.uni-kl.de> Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/arch/riscv')
-rw-r--r--src/arch/riscv/process.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/riscv/process.cc b/src/arch/riscv/process.cc
index 44b276a4b..73df5f50d 100644
--- a/src/arch/riscv/process.cc
+++ b/src/arch/riscv/process.cc
@@ -64,7 +64,7 @@ RiscvProcess::RiscvProcess(ProcessParams *params, ObjectFile *objFile) :
PageBytes),
objFile)
{
- fatal_if(!params->useArchPT, "Arch page tables not implemented.");
+ fatal_if(params->useArchPT, "Arch page tables not implemented.");
const Addr stack_base = 0x7FFFFFFFFFFFFFFFL;
const Addr max_stack_size = 8 * 1024 * 1024;
const Addr next_thread_stack_base = stack_base - max_stack_size;