summaryrefslogtreecommitdiffstats
path: root/coccinelle/cond-omit-middle.cocci
diff options
context:
space:
mode:
Diffstat (limited to 'coccinelle/cond-omit-middle.cocci')
-rw-r--r--coccinelle/cond-omit-middle.cocci7
1 files changed, 7 insertions, 0 deletions
diff --git a/coccinelle/cond-omit-middle.cocci b/coccinelle/cond-omit-middle.cocci
new file mode 100644
index 0000000..f1587b8
--- /dev/null
+++ b/coccinelle/cond-omit-middle.cocci
@@ -0,0 +1,7 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+/* See: https://gcc.gnu.org/onlinedocs/gcc/Conditionals.html#Conditionals */
+@@
+expression e, x;
+@@
+- e ? e : x
++ e ?: x