Skip to content

Commit 1ecc134

Browse files
committed
ir: Remove redundant parenthesis.
1 parent 252c5e9 commit 1ecc134

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ir/comp.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ impl Bitfield {
356356
if self.width() as u64 == mem::size_of::<u64>() as u64 * 8 {
357357
u64::MAX
358358
} else {
359-
((1u64 << self.width()) - 1u64)
359+
(1u64 << self.width()) - 1u64
360360
};
361361

362362
unoffseted_mask << self.offset_into_unit()

0 commit comments

Comments
 (0)