Coccinelle doesn't always have access to the values of named
(#define) constants, and they may likely often be bound to true
and false values anyway, resulting in false positives. So stop
warning about them.
Signed-off-by: Julia Lawall <[email protected]>
---
scripts/coccinelle/misc/boolinit.cocci | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/scripts/coccinelle/misc/boolinit.cocci b/scripts/coccinelle/misc/boolinit.cocci
index b0584a3..aabb581 100644
--- a/scripts/coccinelle/misc/boolinit.cocci
+++ b/scripts/coccinelle/misc/boolinit.cocci
@@ -136,9 +136,14 @@ position p1;
@r4 depends on !patch@
bool b;
position p2;
+identifier i;
constant c != {0,1};
@@
+(
+ b = i
+|
*b@p2 = c
+)
@script:python depends on org@
p << r1.p;
On Sat, Dec 29, 2018 at 10:14 PM Julia Lawall <[email protected]> wrote:
>
> Coccinelle doesn't always have access to the values of named
> (#define) constants, and they may likely often be bound to true
> and false values anyway, resulting in false positives. So stop
> warning about them.
>
> Signed-off-by: Julia Lawall <[email protected]>
Applied to linux-kbuild. Thanks!
> ---
> scripts/coccinelle/misc/boolinit.cocci | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/scripts/coccinelle/misc/boolinit.cocci b/scripts/coccinelle/misc/boolinit.cocci
> index b0584a3..aabb581 100644
> --- a/scripts/coccinelle/misc/boolinit.cocci
> +++ b/scripts/coccinelle/misc/boolinit.cocci
> @@ -136,9 +136,14 @@ position p1;
> @r4 depends on !patch@
> bool b;
> position p2;
> +identifier i;
> constant c != {0,1};
> @@
> +(
> + b = i
> +|
> *b@p2 = c
> +)
>
> @script:python depends on org@
> p << r1.p;
>
--
Best Regards
Masahiro Yamada