diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-20 11:40:41 +0200 |
|---|---|---|
| committer | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-03-21 14:58:21 +0200 |
| commit | 09fdbbe98cf143a5cf0418d6f804646ee00a9e4d (patch) | |
| tree | 741b3e2519b106796b06c74cdc547a3722f9f5a5 | |
| parent | f82e92f40a13c13cee0a0d5e6883e78146355cc8 (diff) | |
tools: Convert type int functions to bool where possible
Signed-off-by: Donatas Abraitis <donatas.abraitis@gmail.com>
| -rw-r--r-- | tools/coccinelle/int_to_bool_function.cocci | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/coccinelle/int_to_bool_function.cocci b/tools/coccinelle/int_to_bool_function.cocci new file mode 100644 index 0000000000..f86fe70be2 --- /dev/null +++ b/tools/coccinelle/int_to_bool_function.cocci @@ -0,0 +1,24 @@ +@@ +identifier fn; +typedef bool; +symbol false; +symbol true; +identifier I; +struct thread *thread; +@@ + +- int ++ bool +fn (...) +{ +... when strict + when != I = THREAD_ARG(thread); +( +- return 0; ++ return false; +| +- return 1; ++ return true; +) +?... +} |
