summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-02-08 01:57:47 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-02-08 01:57:47 -0500
commite59fdcdd3953145dde03edc45ea20549c7cd57da (patch)
tree9bb36fbc22362c00024d106e4dc12764eceaca7e /arch
parent29bc6c086af827be7acaba7b4576a33239b7e930 (diff)
downloadgem5-e59fdcdd3953145dde03edc45ea20549c7cd57da.tar.xz
Some fixups
arch/alpha/alpha_linux_process.cc: arch/alpha/alpha_tru64_process.cc: Replaced the namespace declaration with including arch/alpha/isa_traits.hh --HG-- extra : convert_revision : 07cb73a9f30f0e165809668f9baff6a3e3f94580
Diffstat (limited to 'arch')
-rw-r--r--arch/alpha/alpha_linux_process.cc4
-rw-r--r--arch/alpha/alpha_tru64_process.cc4
2 files changed, 2 insertions, 6 deletions
diff --git a/arch/alpha/alpha_linux_process.cc b/arch/alpha/alpha_linux_process.cc
index 16cbf3841..8f114955f 100644
--- a/arch/alpha/alpha_linux_process.cc
+++ b/arch/alpha/alpha_linux_process.cc
@@ -26,9 +26,6 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-namespace LittleEndian {}
-using namespace LittleEndian;
-
#include <dirent.h>
#include <errno.h>
#include <fcntl.h> // for host open() flags
@@ -45,6 +42,7 @@ using namespace LittleEndian;
#include "sim/process.hh"
#include "sim/sim_events.hh"
+#include "arch/alpha/isa_traits.hh"
#include "arch/alpha/alpha_common_syscall_emul.hh"
#include "sim/syscall_emul.hh"
#include "sim/root.hh" // for curTick & ticksPerSecond
diff --git a/arch/alpha/alpha_tru64_process.cc b/arch/alpha/alpha_tru64_process.cc
index d57054dfd..6d790b173 100644
--- a/arch/alpha/alpha_tru64_process.cc
+++ b/arch/alpha/alpha_tru64_process.cc
@@ -26,9 +26,6 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-namespace LittleEndian {}
-using namespace LittleEndian;
-
#include <sys/types.h>
#include <sys/stat.h>
#if defined(__OpenBSD__)
@@ -44,6 +41,7 @@ using namespace LittleEndian;
#include <string.h> // for memset()
#include <unistd.h>
+#include "arch/alpha/isa_traits.hh"
#include "arch/alpha/alpha_common_syscall_emul.hh"
#include "arch/alpha/alpha_tru64_process.hh"
#include "base/trace.hh"