diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-09-14 00:29:38 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-09-14 00:29:38 -0700 |
commit | 0dd1f7f01a8a744811aede5814111b8681271a6b (patch) | |
tree | 8d6f8936821696b19135495db72ffee29dac490e /src/sim/syscall_emul.cc | |
parent | 8f3fbd2d13dbfc3699dc43b27b3c2a389049078d (diff) | |
download | gem5-0dd1f7f01a8a744811aede5814111b8681271a6b.tar.xz |
CPU: Trim unnecessary includes from some common files.
This reduces the scope of those includes and makes it less likely for there to
be a dependency loop. This also moves the hashing functions associated with
ExtMachInst objects to be with the ExtMachInst definitions and out of
utility.hh.
Diffstat (limited to 'src/sim/syscall_emul.cc')
-rw-r--r-- | src/sim/syscall_emul.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sim/syscall_emul.cc b/src/sim/syscall_emul.cc index 7b12700e0..207c07309 100644 --- a/src/sim/syscall_emul.cc +++ b/src/sim/syscall_emul.cc @@ -36,6 +36,7 @@ #include <iostream> #include <string> +#include "arch/utility.hh" #include "sim/syscall_emul.hh" #include "base/chunk_generator.hh" #include "base/trace.hh" |