diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2012-09-18 22:49:12 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2012-09-18 22:49:12 -0500 |
commit | 33c904e0a560be8c5f9aedaba9940ad0df52d81c (patch) | |
tree | 54aa24329761e607c750c4b8d6a39ad241159261 /src/mem/ruby/common/Address.cc | |
parent | 86b1c0fd540b57c1e7bba948ad0417f22f90eb41 (diff) | |
download | gem5-33c904e0a560be8c5f9aedaba9940ad0df52d81c.tar.xz |
ruby: eliminate typedef integer_t
Diffstat (limited to 'src/mem/ruby/common/Address.cc')
-rw-r--r-- | src/mem/ruby/common/Address.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/ruby/common/Address.cc b/src/mem/ruby/common/Address.cc index cc87f4ece..d3f678863 100644 --- a/src/mem/ruby/common/Address.cc +++ b/src/mem/ruby/common/Address.cc @@ -55,10 +55,10 @@ Address::makeNextStrideAddress(int stride) + RubySystem::getBlockSizeBytes()*stride; } -integer_t +Index Address::memoryModuleIndex() const { - integer_t index = + Index index = bitSelect(RubySystem::getBlockSizeBits() + RubySystem::getMemorySizeBits(), ADDRESS_WIDTH); assert (index >= 0); |