Save more integer divisions on ARM when we know the operands are positive
diff --git a/celt/entcode.h b/celt/entcode.h
index c10fe8d..66f281d 100644
--- a/celt/entcode.h
+++ b/celt/entcode.h
@@ -122,6 +122,7 @@
 
 /* Tested exhaustively for all n and for 1<=d<=256 */
 static OPUS_INLINE opus_uint32 celt_udiv(opus_uint32 n, opus_uint32 d) {
+   celt_assert(d>0);
 #ifdef USE_SMALL_DIV_TABLE
    if (d>256)
       return n/d;