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