]> Git Repo - qemu.git/blame - scripts/coccinelle/remove_muldiv64.cocci
hw/hppa/dino: mask out lower 2 bits of PCI config addr
[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
This page took 0.171994 seconds and 4 git commands to generate.