summaryrefslogtreecommitdiff
path: root/src/cpu/static_inst.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-12 20:48:24 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-12 20:48:24 -0700
commit989fa4fc0fa95906f2986deec99cfb8e6e49cc1a (patch)
tree5a58e083c808e5cd8f82c71c255cc27d230a074b /src/cpu/static_inst.hh
parent6074b1abf2e235f9a5d3ad78879a805ca335dc0e (diff)
downloadgem5-989fa4fc0fa95906f2986deec99cfb8e6e49cc1a.tar.xz
X86: Make the MicroPC type 16 bit.
Diffstat (limited to 'src/cpu/static_inst.hh')
-rw-r--r--src/cpu/static_inst.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/static_inst.hh b/src/cpu/static_inst.hh
index c9eb6ff24..032a304ad 100644
--- a/src/cpu/static_inst.hh
+++ b/src/cpu/static_inst.hh
@@ -72,7 +72,7 @@ namespace Trace {
class InstRecord;
}
-typedef uint32_t MicroPC;
+typedef uint16_t MicroPC;
static const MicroPC MicroPCRomBit = 1 << (sizeof(MicroPC) * 8 - 1);