repo.or.cz
/
qemu
/
rayw.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
scripts: add muldiv64() checking coccinelle scripts
[qemu/rayw.git]
/
scripts
/
coccinelle
/
remove_muldiv64.cocci
blob
4c10bd57dd89313602f68b758a219f4cbba06c15
1
// replace muldiv64(a, 1, b) by "a / b"
2
@@
3
expression a, b;
4
@@
5
-muldiv64(a, 1, b)
6
+a / b