diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mem/ruby/common/Set.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mem/ruby/common/Set.cc b/src/mem/ruby/common/Set.cc index ffc0a3f07..12d0b2a21 100644 --- a/src/mem/ruby/common/Set.cc +++ b/src/mem/ruby/common/Set.cc @@ -300,8 +300,7 @@ void Set::setSize(int size) { m_nSize = size; - - m_nArrayLen = m_nSize / LONG_BITS + ((m_nSize % LONG_BITS == 0) ? 0 : 1 ); + m_nArrayLen = (m_nSize + LONG_BITS - 1) / LONG_BITS; // decide whether to use dynamic or static alloction if (m_nArrayLen <= NUMBER_WORDS_PER_SET) { |