diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-10-23 02:37:54 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-10-23 02:37:54 -0400 |
commit | a8973c605416e82f18470bedb0cc764a016d2bd8 (patch) | |
tree | 49f4656fbb7361a5742cb5986051e3d3345f4016 | |
parent | f31d73a43364b5d3988f27b72374bf563178fd13 (diff) | |
download | gem5-a8973c605416e82f18470bedb0cc764a016d2bd8.tar.xz |
Files in base shouldn't depend on things in sim. Changed "sim/host.hh" to <inttypes.hh>
--HG--
extra : convert_revision : c1e46c012a26cdb0603416f8e8a99e0ecb1c09bc
-rw-r--r-- | src/base/bitfield.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/bitfield.hh b/src/base/bitfield.hh index f4e49aa8d..879780d56 100644 --- a/src/base/bitfield.hh +++ b/src/base/bitfield.hh @@ -32,7 +32,7 @@ #ifndef __BASE_BITFIELD_HH__ #define __BASE_BITFIELD_HH__ -#include "sim/host.hh" +#include <inttypes.h> /** * Generate a 64-bit mask of 'nbits' 1s, right justified. |