From 09fdbbe98cf143a5cf0418d6f804646ee00a9e4d Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Fri, 20 Mar 2020 11:40:41 +0200 Subject: [PATCH] tools: Convert type int functions to bool where possible Signed-off-by: Donatas Abraitis --- tools/coccinelle/int_to_bool_function.cocci | 24 +++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tools/coccinelle/int_to_bool_function.cocci 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; +) +?... +} -- 2.39.5