Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | coccinelle: further restrict certain transformations | Frantisek Sumsal | 2019-04-30 | 1 | -9/+10 |
| | | | | | | | | | Some transformations generate results we don't want to keep, so let's disable such transformations for specific files. Also, disable const-strlen.cocci everywhere, as the STRLEN macro has a pretty limited scope, so the transformation generates false positives in most cases. | ||||
* | Add macro for checking if some flags are set | Zbigniew Jędrzejewski-Szmek | 2018-06-04 | 1 | -0/+15 |
This way we don't need to repeat the argument twice. I didn't replace all instances. I think it's better to leave out: - asserts - comparisons like x & y == x, which are mathematically equivalent, but here we aren't checking if flags are set, but if the argument fits in the flags. |