From 0be64ffe2f4ff8824b3084362706ffbf456ea490 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Sat, 31 May 2014 18:00:23 -0700 Subject: style: eliminate equality tests with true and false Using '== true' in a boolean expression is totally redundant, and using '== false' is pretty verbose (and arguably less readable in most cases) compared to '!'. It's somewhat of a pet peeve, perhaps, but I had some time waiting for some tests to run and decided to clean these up. Unfortunately, SLICC appears not to have the '!' operator, so I had to leave the '== false' tests in the SLICC code. --- src/arch/power/tlb.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/power') diff --git a/src/arch/power/tlb.cc b/src/arch/power/tlb.cc index 9c1745cc8..1396d726c 100644 --- a/src/arch/power/tlb.cc +++ b/src/arch/power/tlb.cc @@ -165,7 +165,7 @@ TLB::insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages) } else { // Update TLB - if (table[Index].V0 == true || table[Index].V1 == true) { + if (table[Index].V0 || table[Index].V1) { // Previous entry is valid PageTable::iterator i = lookupTable.find(table[Index].VPN); -- cgit v1.2.3