diff options
author | Nathan Binkert <nate@binkert.org> | 2009-05-17 14:34:51 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-05-17 14:34:51 -0700 |
commit | 709d859530325f28b904001f5a55dbdec2bad199 (patch) | |
tree | 986591a80f7c54fcf19d764248128624b546bad7 /src/arch/x86 | |
parent | eef3a2e142443d94b75de333ff3ccb69644a9831 (diff) | |
download | gem5-709d859530325f28b904001f5a55dbdec2bad199.tar.xz |
includes: use base/types.hh not inttypes.h or stdint.h
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/cpuid.hh | 2 | ||||
-rw-r--r-- | src/arch/x86/types.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/cpuid.hh b/src/arch/x86/cpuid.hh index 5cb4c7972..d8b013ba1 100644 --- a/src/arch/x86/cpuid.hh +++ b/src/arch/x86/cpuid.hh @@ -31,7 +31,7 @@ #ifndef __ARCH_X86_CPUID_HH__ #define __ARCH_X86_CPUID_HH__ -#include <inttypes.h> +#include "base/types.hh" class ThreadContext; diff --git a/src/arch/x86/types.hh b/src/arch/x86/types.hh index 29420352b..c06d664eb 100644 --- a/src/arch/x86/types.hh +++ b/src/arch/x86/types.hh @@ -58,11 +58,11 @@ #ifndef __ARCH_X86_TYPES_HH__ #define __ARCH_X86_TYPES_HH__ -#include <inttypes.h> #include <iostream> #include "base/bitunion.hh" #include "base/cprintf.hh" +#include "base/types.hh" namespace X86ISA { |