summaryrefslogtreecommitdiffstats
path: root/coccinelle/no-if-assignments.cocci
diff options
context:
space:
mode:
Diffstat (limited to 'coccinelle/no-if-assignments.cocci')
-rw-r--r--coccinelle/no-if-assignments.cocci21
1 files changed, 21 insertions, 0 deletions
diff --git a/coccinelle/no-if-assignments.cocci b/coccinelle/no-if-assignments.cocci
new file mode 100644
index 0000000..9fbc018
--- /dev/null
+++ b/coccinelle/no-if-assignments.cocci
@@ -0,0 +1,21 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+@@
+expression p, q;
+identifier r;
+statement s;
+@@
+- if ((r = q) < p)
+- s
++ r = q;
++ if (r < p)
++ s
+@@
+expression p, q;
+identifier r;
+statement s;
+@@
+- if ((r = q) >= p)
+- s
++ r = q;
++ if (r >= p)
++ s