summaryrefslogtreecommitdiff
path: root/src/mem/ruby/common
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2009-05-12 22:33:05 -0700
committerNathan Binkert <nate@binkert.org>2009-05-12 22:33:05 -0700
commit016d472c462d358935533d957d447f48433e6f1a (patch)
treea1e62d06ce6f96baaff906cc2cd876de34899588 /src/mem/ruby/common
parent7389dc63b2b0df640da50bb70b6e17573ab90f35 (diff)
downloadgem5-016d472c462d358935533d957d447f48433e6f1a.tar.xz
ruby: remove random uint typedef and use unsigned
Diffstat (limited to 'src/mem/ruby/common')
-rw-r--r--src/mem/ruby/common/Global.hh1
-rw-r--r--src/mem/ruby/common/SubBlock.hh2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/mem/ruby/common/Global.hh b/src/mem/ruby/common/Global.hh
index 6b524bb70..de2d06e0e 100644
--- a/src/mem/ruby/common/Global.hh
+++ b/src/mem/ruby/common/Global.hh
@@ -85,7 +85,6 @@ typedef integer_t simtime_t;
typedef Time LogicalTime;
typedef int64 Index; // what the address bit ripper returns
typedef int word; // one word of a cache line
-typedef unsigned int uint;
typedef int SwitchID;
typedef int LinkID;
diff --git a/src/mem/ruby/common/SubBlock.hh b/src/mem/ruby/common/SubBlock.hh
index 5831be35a..2943bb886 100644
--- a/src/mem/ruby/common/SubBlock.hh
+++ b/src/mem/ruby/common/SubBlock.hh
@@ -85,7 +85,7 @@ private:
// Data Members (m_ prefix)
Address m_address;
Address m_logicalAddress;
- Vector<uint> m_data;
+ Vector<unsigned> m_data;
};
// Output operator declaration