diff options
author | Korey Sewell <ksewell@umich.edu> | 2007-11-15 14:17:21 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2007-11-15 14:17:21 -0500 |
commit | 7ba65aecaaf83f29c1da34f2836d17b573ef5270 (patch) | |
tree | 79857c5135bb8b98ec76c1df5fd7d5deafab94c6 /src/arch/x86 | |
parent | 789153dff64edcf046d800f231dffa6d66004ed5 (diff) | |
download | gem5-7ba65aecaaf83f29c1da34f2836d17b573ef5270.tar.xz |
Add CoreSpecific type to all archs
--HG--
extra : convert_revision : 659786bf6489ab6151e47fbf1f4c0a723262fce2
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/types.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/arch/x86/types.hh b/src/arch/x86/types.hh index fd33b8383..90df38d13 100644 --- a/src/arch/x86/types.hh +++ b/src/arch/x86/types.hh @@ -258,6 +258,10 @@ namespace X86ISA typedef int RegContextVal; typedef uint16_t RegIndex; + + struct CoreSpecific { + int core_type; + }; }; #endif // __ARCH_X86_TYPES_HH__ |