summaryrefslogtreecommitdiff
path: root/coccinelle/zz-drop-braces.cocci
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2023-12-25 11:43:27 +0100
committerFrantisek Sumsal <frantisek@sumsal.cz>2023-12-25 13:53:02 +0100
commitfcd2db31c03e717d9f3b66f52af06ce60de46add (patch)
tree7c08ecbc880ef4f7fd7d764f8a5f05f040b0f738 /coccinelle/zz-drop-braces.cocci
parent6688db4194a83954f03ab952891aca5c483e63a3 (diff)
coccinelle: properly drop braces around single-statement if()s
Diffstat (limited to 'coccinelle/zz-drop-braces.cocci')
-rw-r--r--coccinelle/zz-drop-braces.cocci25
1 files changed, 5 insertions, 20 deletions
diff --git a/coccinelle/zz-drop-braces.cocci b/coccinelle/zz-drop-braces.cocci
index 8c3be01c1f..7a3382c9a7 100644
--- a/coccinelle/zz-drop-braces.cocci
+++ b/coccinelle/zz-drop-braces.cocci
@@ -1,28 +1,13 @@
/* SPDX-License-Identifier: LGPL-2.1-or-later */
@@
position p : script:python() { p[0].file != "src/journal/lookup3.c" };
-identifier id;
-expression e;
+expression e,e1;
@@
-if (...)
-- {
+- if (e) {
++ if (e)
(
- id@p(...);
+ e1@p;
|
- e@p;
-)
-- }
-
-@@
-position p : script:python() { p[0].file != "src/journal/lookup3.c" };
-identifier id;
-expression e;
-@@
-if (...)
-- {
-(
- return id@p(...);
-|
- return e@p;
+ return e1@p;
)
- }