diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 20:48:24 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 20:48:24 -0700 |
commit | 989fa4fc0fa95906f2986deec99cfb8e6e49cc1a (patch) | |
tree | 5a58e083c808e5cd8f82c71c255cc27d230a074b /src | |
parent | 6074b1abf2e235f9a5d3ad78879a805ca335dc0e (diff) | |
download | gem5-989fa4fc0fa95906f2986deec99cfb8e6e49cc1a.tar.xz |
X86: Make the MicroPC type 16 bit.
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/static_inst.hh | 2 |
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); |