diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2015-01-20 08:12:45 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2015-01-20 08:12:45 -0500 |
commit | 3cb9c361e2ad567f821f1377de77035a16390be1 (patch) | |
tree | 86fedcbbab03bd5aac665ca610331a1f9e792b50 /configs/example | |
parent | de162ad96886cc78bd9c0fdb3417f8d8047f643b (diff) | |
download | gem5-3cb9c361e2ad567f821f1377de77035a16390be1.tar.xz |
scons: Do not build the InOrderCPU
One step closer to shifting focus to the MinorCPU.
Diffstat (limited to 'configs/example')
-rw-r--r-- | configs/example/se.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |