pagetable.hh:
authorLisa Hsu <hsul@eecs.umich.edu>
Tue, 9 Jan 2007 01:50:45 +0000 (20:50 -0500)
committerLisa Hsu <hsul@eecs.umich.edu>
Tue, 9 Jan 2007 01:50:45 +0000 (20:50 -0500)
small fix so ALPHA_FS will build on macs
interrupts.hh:
small fix for alpha compile

src/arch/alpha/interrupts.hh:
    small fix for alpha compile
src/arch/alpha/pagetable.hh:
    small fix so ALPHA_FS will build on macs

--HG--
extra : convert_revision : 5fdbc68caa706d652b51807ac8f6bf58bcf72bdc

src/arch/alpha/interrupts.hh
src/arch/alpha/pagetable.hh

index 388ccacdebf069860281757583940019de1e3cd1..a522dec6c142e1f51f34d14b1bf43b2e49c915e6 100644 (file)
@@ -52,6 +52,11 @@ namespace AlphaISA
             newInfoSet = false;
         }
 
+        void post(int int_type)
+        {
+            // sparc only
+        }
+
         void post(int int_num, int index)
         {
             DPRINTF(Interrupt, "Interrupt %d:%d posted\n", int_num, index);
index 7ec4a6a752b8ee148e823da68c5fe4889fd8e8e0..c7e1c892323cae6d8c802c3712e918cbade4f6ee 100644 (file)
@@ -80,7 +80,7 @@ namespace AlphaISA {
         bool _kre()  const { return (entry >>  8) & 0x1; }
         bool _nomb() const { return (entry >>  7) & 0x1; }
         int  _gh()   const { return (entry >>  5) & 0x3; }
-        bool _asm()  const { return (entry >>  4) & 0x1; }
+        bool _asm_()  const { return (entry >>  4) & 0x1; }
         bool _foe()  const { return (entry >>  3) & 0x1; }
         bool _fow()  const { return (entry >>  2) & 0x1; }
         bool _for()  const { return (entry >>  1) & 0x1; }