Skip to content

Commit 63b7c73

Browse files
JoePerchestorvalds
authored andcommitted
checkpatch: add --strict check for ifs with unnecessary parentheses
An if statement test like if ((foo == bar) && (baz != qux)) can arguably be better written without the parentheses as if (foo == bar && baz != qux) Add a test to find these cases. Link: http://lkml.kernel.org/r/dcd0561ddd0fa43c51a420d53b550d738bf42001.1502734458.git.joe@perches.com Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent afdb05e commit 63b7c73

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

scripts/checkpatch.pl

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4496,6 +4496,30 @@ sub process {
44964496
}
44974497
}
44984498

4499+
# check for unnecessary parentheses around comparisons in if uses
4500+
if ($^V && $^V ge 5.10.0 && defined($stat) &&
4501+
$stat =~ /(^.\s*if\s*($balanced_parens))/) {
4502+
my $if_stat = $1;
4503+
my $test = substr($2, 1, -1);
4504+
my $herectx;
4505+
while ($test =~ /(?:^|[^\w\&\!\~])+\s*\(\s*([\&\!\~]?\s*$Lval\s*(?:$Compare\s*$FuncArg)?)\s*\)/g) {
4506+
my $match = $1;
4507+
# avoid parentheses around potential macro args
4508+
next if ($match =~ /^\s*\w+\s*$/);
4509+
if (!defined($herectx)) {
4510+
$herectx = $here . "\n";
4511+
my $cnt = statement_rawlines($if_stat);
4512+
for (my $n = 0; $n < $cnt; $n++) {
4513+
my $rl = raw_line($linenr, $n);
4514+
$herectx .= $rl . "\n";
4515+
last if $rl =~ /^[ \+].*\{/;
4516+
}
4517+
}
4518+
CHK("UNNECESSARY_PARENTHESES",
4519+
"Unnecessary parentheses around '$match'\n" . $herectx);
4520+
}
4521+
}
4522+
44994523
#goto labels aren't indented, allow a single space however
45004524
if ($line=~/^.\s+[A-Za-z\d_]+:(?![0-9]+)/ and
45014525
!($line=~/^. [A-Za-z\d_]+:/) and !($line=~/^.\s+default:/)) {

0 commit comments

Comments
 (0)