summaryrefslogtreecommitdiff
path: root/cpu
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2006-03-12 15:14:07 -0500
committerSteve Reinhardt <stever@eecs.umich.edu>2006-03-12 15:14:07 -0500
commit71c2c962dbaf4e04d64a117b5b333a3c039423ad (patch)
treeaeaf8e90feb42aa650be398fd4712f5b1602ba2c /cpu
parent57d53f8a9d738b43e0de41a70813e3a6de8d4dfb (diff)
downloadgem5-71c2c962dbaf4e04d64a117b5b333a3c039423ad.tar.xz
Clean up "using" declarations.
arch/alpha/isa_traits.hh: No unprotected "using" in header files. cpu/simple/cpu.cc: Fix ISA namespace "using" statement. --HG-- extra : convert_revision : 317ea40f8de00748d7613a0116edab05770bdc72
Diffstat (limited to 'cpu')
-rw-r--r--cpu/simple/cpu.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/cpu/simple/cpu.cc b/cpu/simple/cpu.cc
index 44521a542..6e8764709 100644
--- a/cpu/simple/cpu.cc
+++ b/cpu/simple/cpu.cc
@@ -75,11 +75,7 @@
#endif // FULL_SYSTEM
using namespace std;
-
-//The SimpleCPU does alpha only
-//Change this to include arch/isa_traits.hh?
-//using namespace AlphaISA;
-#include "arch/isa_traits.hh"
+using namespace TheISA;
SimpleCPU::TickEvent::TickEvent(SimpleCPU *c, int w)
: Event(&mainEventQueue, CPU_Tick_Pri), cpu(c), width(w)