Put the Alpha faults into the AlphaISA namespace
authorGabe Black <gblack@eecs.umich.edu>
Mon, 27 Feb 2006 09:00:24 +0000 (04:00 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Mon, 27 Feb 2006 09:00:24 +0000 (04:00 -0500)
--HG--
extra : convert_revision : d9586bb8ffaab74673aa0b3d17bb676b949ff212

arch/alpha/faults.cc
arch/alpha/faults.hh

index 1df0de7c1179d0be5f31c5ed97fda791fb49988f..5033f9fcd934e7300ba4394931759b1bf99103c8 100644 (file)
@@ -28,6 +28,9 @@
 
 #include "arch/alpha/faults.hh"
 
+namespace AlphaISA
+{
+
 FaultName AlphaFault::_name = "alphafault";
 FaultVect AlphaFault::_vect = 0x0000;
 FaultStat AlphaFault::_stat;
@@ -92,6 +95,8 @@ FaultName IntegerOverflowFault::_name = "intover";
 FaultVect IntegerOverflowFault::_vect = 0x0501;
 FaultStat IntegerOverflowFault::_stat;
 
+} // namespace AlphaISA
+
 /*Fault * ListOfFaults[] = {
         (Fault *)&NoFault,
         (Fault *)&ResetFault,
index 2004c09114e86facb103cfeb6b4399df465c2041..fedbadd4d047767ba831c6fa0f2da28b319219e1 100644 (file)
@@ -33,6 +33,9 @@
 
 // The design of the "name" and "vect" functions is in sim/faults.hh
 
+namespace AlphaISA
+{
+
 typedef const Addr FaultVect;
 
 class AlphaFault : public FaultBase
@@ -241,4 +244,6 @@ class IntegerOverflowFault : public AlphaFault
     FaultStat & stat() {return _stat;}
 };
 
+} // AlphaISA namespace
+
 #endif // __FAULTS_HH__