summaryrefslogtreecommitdiff
path: root/src/arch/mips/registers.hh
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-10-15 20:45:45 -0700
committerGabe Black <gabeblack@google.com>2018-10-17 20:15:26 +0000
commit1c508a206f9e91aad52ef6b009940f622884f58a (patch)
treee2ba992f2f14294c73f1f996cc05ab6beed008a5 /src/arch/mips/registers.hh
parente086e74a79df938351a742c0eaebff602c4ad97d (diff)
downloadgem5-1c508a206f9e91aad52ef6b009940f622884f58a.tar.xz
arch: Get rid of the unused type AnyReg.
This type is defined for all the ISAs but isn't used by anything. Change-Id: I659a0c5abc7883d82fedd1cac2cd103612d315c8 Reviewed-on: https://gem5-review.googlesource.com/c/13539 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/arch/mips/registers.hh')
-rw-r--r--src/arch/mips/registers.hh6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/arch/mips/registers.hh b/src/arch/mips/registers.hh
index b44283d35..55c2dee03 100644
--- a/src/arch/mips/registers.hh
+++ b/src/arch/mips/registers.hh
@@ -299,12 +299,6 @@ using VecRegContainer = VecReg::Container;
// This has to be one to prevent warnings that are treated as errors
constexpr unsigned NumVecRegs = 1;
-typedef union {
- IntReg intreg;
- FloatReg fpreg;
- MiscReg ctrlreg;
-} AnyReg;
-
} // namespace MipsISA
#endif