]> git.proxmox.com Git - mirror_qemu.git/blame - scripts/coccinelle/remove_muldiv64.cocci
Merge remote-tracking branch 'remotes/kraxel/tags/vga-20170717-pull-request' into...
[mirror_qemu.git] / scripts / coccinelle / remove_muldiv64.cocci
CommitLineData
e9d51507
LV
1// replace muldiv64(a, 1, b) by "a / b"
2@@
3expression a, b;
4@@
5-muldiv64(a, 1, b)
6+a / b