xref
: /
openbmc
/
qemu
/
scripts
/
coccinelle
/
typecast.cocci
(revision c4fa97c7f216fc80b09a5d32be847ff8d502cba6)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
// Remove useless casts
2
@@
3
type T;
4
T v;
5
@@
6
- (T *)&v
7
+ &v
8