summaryrefslogtreecommitdiffstats
path: root/coccinelle/flags-set.cocci
blob: bcf08db23ba7e8e5e8d4c898dc25e4b66c9b1a41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* SPDX-License-Identifier: LGPL-2.1-or-later */
@@
/* Disable this transformation in cases where it doesn't make sense or
 * where it makes the resulting expression more confusing
 */
position p : script:python() {
            not (p[0].file == "src/shared/securebits-util.h" or
                 p[0].file == "src/core/manager.h" or
                 p[0].current_element == "log_set_max_level_realm" or
                 p[0].current_element == "unichar_is_valid")
        };
expression x;
constant y;
@@
(
- ((x@p) & (y)) == (y)
+ FLAGS_SET(x, y)
|
- (x@p & (y)) == (y)
+ FLAGS_SET(x, y)
|
- ((x@p) & y) == y
+ FLAGS_SET(x, y)
)