summaryrefslogtreecommitdiff
path: root/coccinelle/cmp.cocci
blob: a34cbe5bf60a5d75c26f5f342d4339ed93ca3c2b (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
@@
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);