projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0efe2f6
)
ARM: Eliminate some unused enums.
author
Gabe Black
<gblack@eecs.umich.edu>
Thu, 26 Aug 2010 00:10:42 +0000
(19:10 -0500)
committer
Gabe Black
<gblack@eecs.umich.edu>
Thu, 26 Aug 2010 00:10:42 +0000
(19:10 -0500)
src/arch/arm/registers.hh
patch
|
blob
|
history
diff --git
a/src/arch/arm/registers.hh
b/src/arch/arm/registers.hh
index 480178860ff77ae663df9623146ad082d8f2c71c..444e979fb181eabb50ad9592c93f353fb97d0620 100644
(file)
--- a/
src/arch/arm/registers.hh
+++ b/
src/arch/arm/registers.hh
@@
-92,29
+92,6
@@
typedef union {
MiscReg ctrlreg;
} AnyReg;
-enum FPControlRegNums {
- FIR = NumFloatArchRegs,
- FCCR,
- FEXR,
- FENR,
- FCSR
-};
-
-enum FCSRBits {
- Inexact = 1,
- Underflow,
- Overflow,
- DivideByZero,
- Invalid,
- Unimplemented
-};
-
-enum FCSRFields {
- Flag_Field = 1,
- Enable_Field = 6,
- Cause_Field = 11
-};
-
} // namespace ArmISA
#endif