diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-07-14 17:28:26 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-07-14 17:28:26 -0700 |
commit | 873b762d4b7ced232782c937e6927d1f007e82eb (patch) | |
tree | 1349b290fa2c07af3c3ffdf06f81c784b43d4e99 /src/arch | |
parent | 4f7809d5e674384f58d3be6f4591afc0ceb2c37e (diff) | |
download | gem5-873b762d4b7ced232782c937e6927d1f007e82eb.tar.xz |
Move bitunion code into it's own file.
--HG--
extra : convert_revision : 8d55ca9645ee4e357b7f4595435542eb72490331
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/intregs.hh | 2 | ||||
-rw-r--r-- | src/arch/x86/types.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/intregs.hh b/src/arch/x86/intregs.hh index c3beb27c3..bfec7d041 100644 --- a/src/arch/x86/intregs.hh +++ b/src/arch/x86/intregs.hh @@ -58,7 +58,7 @@ #ifndef __ARCH_X86_INTREGS_HH__ #define __ARCH_X86_INTREGS_HH__ -#include "base/bitfield.hh" +#include "base/bitunion.hh" namespace X86ISA { diff --git a/src/arch/x86/types.hh b/src/arch/x86/types.hh index 61ab2bac9..ef4d2e5c4 100644 --- a/src/arch/x86/types.hh +++ b/src/arch/x86/types.hh @@ -61,7 +61,7 @@ #include <inttypes.h> #include <iostream> -#include "base/bitfield.hh" +#include "base/bitunion.hh" #include "base/cprintf.hh" namespace X86ISA |