blob: c2663c677ac1c96ebf72a42a241714fe1231f9c0 [file] [log] [blame]
Fabio Estevamdd494ac2015-05-09 17:09:29 -03001/// The address of a variable or field is likely always to be non-zero.
Julia Lawall4619c2b2012-04-21 20:14:58 +02002///
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:
Nicolas Palix93f14462013-06-20 13:10:56 +02008// Options: --no-includes --include-headers
Julia Lawall4619c2b2012-04-21 20:14:58 +02009
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)