diff options
author | Gabe Black <gabeblack@google.com> | 2018-10-15 20:45:45 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-10-17 20:15:26 +0000 |
commit | 1c508a206f9e91aad52ef6b009940f622884f58a (patch) | |
tree | e2ba992f2f14294c73f1f996cc05ab6beed008a5 /src/arch/x86 | |
parent | e086e74a79df938351a742c0eaebff602c4ad97d (diff) | |
download | gem5-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/x86')
-rw-r--r-- | src/arch/x86/registers.hh | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/arch/x86/registers.hh b/src/arch/x86/registers.hh index 9db3349f0..c2977f8a2 100644 --- a/src/arch/x86/registers.hh +++ b/src/arch/x86/registers.hh @@ -107,13 +107,6 @@ constexpr unsigned NumVecRegs = 1; //technically for x87 (80 bits) or at all for xmm (128 bits) typedef double FloatReg; typedef uint64_t FloatRegBits; -typedef union -{ - IntReg intReg; - FloatReg fpReg; - CCReg ccReg; - MiscReg ctrlReg; -} AnyReg; } // namespace X86ISA |