Skip to content

Commit c1eb06e

Browse files
authored
Update common_x86_64.h
1 parent 8145ecd commit c1eb06e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

common_x86_64.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,10 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
196196

197197
if (y <= 1) return x;
198198

199-
if (y > 64) return x/y;
199+
if (y > 64) {
200+
result = x / y;
201+
return result;
202+
}
200203

201204
y = blas_quick_divide_table[y];
202205

0 commit comments

Comments
 (0)