xref: /openbmc/qemu/scripts/coccinelle/remove_muldiv64.cocci (revision 6016b7b46edb714a53a31536b30ead9c3aafaef7)
1// replace muldiv64(a, 1, b) by "a / b"
2@@
3expression a, b;
4@@
5-muldiv64(a, 1, b)
6+a / b
7