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