From: Gabe Black Date: Mon, 13 Oct 2008 03:48:24 +0000 (-0700) Subject: X86: Make the MicroPC type 16 bit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=989fa4fc0fa95906f2986deec99cfb8e6e49cc1a;p=gem5.git X86: Make the MicroPC type 16 bit. --- 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);