Explorar el Código

Add Coccinelle patch for detecing places where CEIL_DIV should be used.

Alexander Færøy hace 7 años
padre
commit
25eaf77033
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. 6 0
      scripts/coccinelle/ceil_div.cocci

+ 6 - 0
scripts/coccinelle/ceil_div.cocci

@@ -0,0 +1,6 @@
+@@
+expression n, d;
+@@
+
+- (((n) + (d) - 1) / (d))
++ CEIL_DIV(n, d)