summaryrefslogtreecommitdiff
path: root/src/sim
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2016-11-17 04:54:14 -0500
committerAndreas Hansson <andreas.hansson@arm.com>2016-11-17 04:54:14 -0500
commit6ed567d6002df081dd6cf2db6685d3e66c11272b (patch)
treed6df4c0abaf10391c9ca9fb9dfc833737c979e37 /src/sim
parent74249f80df4e6128da38dfb5dbf5f61285c673a2 (diff)
downloadgem5-6ed567d6002df081dd6cf2db6685d3e66c11272b.tar.xz
alpha: Remove ALPHA tru64 support and associated tests
No one appears to be using it, and it is causing build issues and increases the development and maintenance effort.
Diffstat (limited to 'src/sim')
-rw-r--r--src/sim/process.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/sim/process.cc b/src/sim/process.cc
index 7c64dad22..21b365296 100644
--- a/src/sim/process.cc
+++ b/src/sim/process.cc
@@ -70,7 +70,6 @@
#if THE_ISA == ALPHA_ISA
#include "arch/alpha/linux/process.hh"
-#include "arch/alpha/tru64/process.hh"
#elif THE_ISA == SPARC_ISA
#include "arch/sparc/linux/process.hh"
#include "arch/sparc/solaris/process.hh"
@@ -591,10 +590,6 @@ LiveProcess::create(LiveProcessParams * params)
fatal("Object file architecture does not match compiled ISA (Alpha).");
switch (objFile->getOpSys()) {
- case ObjectFile::Tru64:
- process = new AlphaTru64Process(params, objFile);
- break;
-
case ObjectFile::UnknownOpSys:
warn("Unknown operating system; assuming Linux.");
// fall through