]> Git Repo - qemu.git/commit - scripts/checkpatch.pl
checkpatch: add check for `while` and `for`
authorSu Hang <[email protected]>
Tue, 6 Mar 2018 07:04:50 +0000 (15:04 +0800)
committerPaolo Bonzini <[email protected]>
Tue, 6 Mar 2018 13:01:28 +0000 (14:01 +0100)
commit2b9aef6fcd96ba7ed8c1ee723e391901852d344c
treefa569a91844570f495786edf9a47cf43ded9b243
parentfb8446d94ec7a3dc0c3a7e7da672406476f075ac
checkpatch: add check for `while` and `for`

Adding check for `while` and `for` statements, which condition has more than
one line.

The former checkpatch.pl can check `if` statement, which condition has more
than one line, whether block misses brace round, like this:
'''
if (cond1 ||
    cond2)
    statement;
'''
But it doesn't do the same check for `for` and `while` statements.

Using `(?:...)` instead of `(...)` in regex pattern catch.
Because `(?:...)` is faster and avoids unwanted side-effect.

Suggested-by: Stefan Hajnoczi <[email protected]>
Suggested-by: Eric Blake <[email protected]>
Suggested-by: Thomas Huth <[email protected]>
Signed-off-by: Su Hang <[email protected]>
Message-Id: <1520319890[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
scripts/checkpatch.pl
This page took 0.025053 seconds and 4 git commands to generate.