summaryrefslogtreecommitdiffstats
path: root/coccinelle/cmp.cocci
blob: d5ab0f245e4b53f710c2f192eda7c4023a898a71 (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
25
26
27
28
29
/* SPDX-License-Identifier: LGPL-2.1-or-later */
@@
expression x, y;
@@
- if (x < y)
-         return -1;
- if (x > y)
-         return 1;
- return 0;
+ return CMP(x, y);
@@
expression x, y;
@@
- if (x < y)
-         return -1;
- else if (x > y)
-         return 1;
- return 0;
+ return CMP(x, y);
@@
expression x, y;
@@
- if (x < y)
-         return -1;
- else if (x > y)
-         return 1;
- else
-         return 0;
+ return CMP(x, y);