diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2016-11-17 04:54:14 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2016-11-17 04:54:14 -0500 |
commit | 6ed567d6002df081dd6cf2db6685d3e66c11272b (patch) | |
tree | d6df4c0abaf10391c9ca9fb9dfc833737c979e37 /src/sim/process.cc | |
parent | 74249f80df4e6128da38dfb5dbf5f61285c673a2 (diff) | |
download | gem5-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/process.cc')
-rw-r--r-- | src/sim/process.cc | 5 |
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 |