1/// The address of a variable or field is likely always to be non-zero.
2///
3// Confidence: High
4// Copyright: (C) 2012 Julia Lawall, INRIA/LIP6.  GPLv2.
5// Copyright: (C) 2012 Gilles Muller, INRIA/LiP6.  GPLv2.
6// URL: http://coccinelle.lip6.fr/
7// Comments:
8// Options: --no-includes --include-headers
9
10virtual org
11virtual report
12virtual context
13
14@r@
15expression x;
16statement S1,S2;
17position p;
18@@
19
20*if@p (&x)
21 S1 else S2
22
23@script:python depends on org@
24p << r.p;
25@@
26
27cocci.print_main("test of a variable/field address",p)
28
29@script:python depends on report@
30p << r.p;
31@@
32
33msg = "ERROR: test of a variable/field address"
34coccilib.report.print_report(p[0],msg)
35