diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2016-02-06 17:21:20 -0800 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2016-02-06 17:21:20 -0800 |
commit | f6b828d068b046df17b462a4d05af957c038a3a8 (patch) | |
tree | 1f7be86e41467862c9377e3ca78fa661cc270aed /src/mem/ruby/common/WriteMask.hh | |
parent | 2d91e741e8ffc8ae3d40f1e849db87e69af7bfa9 (diff) | |
download | gem5-f6b828d068b046df17b462a4d05af957c038a3a8.tar.xz |
style: eliminate explicit boolean comparisons
Result of running 'hg m5style --skip-all --fix-control -a' to get
rid of '== true' comparisons, plus trivial manual edits to get
rid of '== false'/'== False' comparisons.
Left a couple of explicit comparisons in where they didn't seem
unreasonable:
invalid boolean comparison in src/arch/mips/interrupts.cc:155
>> DPRINTF(Interrupt, "Interrupts OnCpuTimerINterrupt(tc) == true\n");<<
invalid boolean comparison in src/unittest/unittest.hh:110
>> "EXPECT_FALSE(" #expr ")", (expr) == false)<<
Diffstat (limited to 'src/mem/ruby/common/WriteMask.hh')
-rw-r--r-- | src/mem/ruby/common/WriteMask.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/ruby/common/WriteMask.hh b/src/mem/ruby/common/WriteMask.hh index 2de02ef74..0ba69891a 100644 --- a/src/mem/ruby/common/WriteMask.hh +++ b/src/mem/ruby/common/WriteMask.hh @@ -71,7 +71,7 @@ class WriteMask test(int offset) { assert(offset < mSize); - return mMask[offset] == true; + return mMask[offset]; } void |