build: fix compile problems pointed out by gcc 4.4

This commit is contained in:
Nathan Binkert
2009-11-04 16:57:01 -08:00
parent fbfe92b5b8
commit 2c5fe6f95e
22 changed files with 64 additions and 43 deletions

View File

@@ -36,6 +36,7 @@
#include <list>
#include <string>
#include "base/types.hh"
#include "cpu/inst_seq.hh"
#include "cpu/inorder/inorder_dyn_inst.hh"
#include "cpu/inorder/pipeline_traits.hh"

View File

@@ -32,6 +32,8 @@
#ifndef __STD_TYPES_HH__
#define __STD_TYPES_HH__
#include "base/types.hh"
// inst sequence type, used to order instructions in the ready list,
// if this rolls over the ready list order temporarily will get messed
// up, but execution will continue and complete correctly

View File

@@ -41,10 +41,12 @@
#error Legion tracing only works in full system!
#endif
#include <iomanip>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <cstdio>
#include <iomanip>
#include "arch/sparc/predecoder.hh"
#include "arch/sparc/registers.hh"
#include "arch/sparc/utility.hh"