xref
: /
openbmc
/
qemu
/
scripts
/
coccinelle
/
remove_muldiv64.cocci
(revision 2e1d70b9e03ca3f1c6185b54010bc9e47e0a0d0c)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
// replace muldiv64(a, 1, b) by "a / b"
2
@@
3
expression a, b;
4
@@
5
-muldiv64(a, 1, b)
6
+a / b
7