summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
Diffstat (limited to 'configs')
-rw-r--r--configs/common/CpuConfig.py1
-rw-r--r--configs/example/se.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/configs/common/CpuConfig.py b/configs/common/CpuConfig.py
index c2663ee98..f30e28246 100644
--- a/configs/common/CpuConfig.py
+++ b/configs/common/CpuConfig.py
@@ -50,7 +50,6 @@ _cpu_classes = {}
_cpu_aliases_all = [
("timing", "TimingSimpleCPU"),
("atomic", "AtomicSimpleCPU"),
- ("inorder", "InOrderCPU"),
("minor", "MinorCPU"),
("detailed", "DerivO3CPU"),
("kvm", ("ArmKvmCPU", "X86KvmCPU")),
diff --git a/configs/example/se.py b/configs/example/se.py
index eb8448270..3f51acdeb 100644
--- a/configs/example/se.py
+++ b/configs/example/se.py
@@ -110,7 +110,7 @@ def get_processes(options):
idx += 1
if options.smt:
- assert(options.cpu_type == "detailed" or options.cpu_type == "inorder")
+ assert(options.cpu_type == "detailed")
return multiprocesses, idx
else:
return multiprocesses, 1