and back to unsigned to run another test...
This commit is contained in:
parent
20f2f6fc84
commit
ccdf81ecc3
|
@ -199,7 +199,7 @@ static __inline BLASLONG blas_quickdivide(BLASLONG x, BLASLONG y){
|
||||||
#else
|
#else
|
||||||
extern unsigned int blas_quick_divide_table[];
|
extern unsigned int blas_quick_divide_table[];
|
||||||
|
|
||||||
static __inline int blas_quickdivide(unsigned int x, unsigned int y){
|
static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){
|
||||||
|
|
||||||
unsigned int result;
|
unsigned int result;
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){
|
||||||
y = blas_quick_divide_table[y];
|
y = blas_quick_divide_table[y];
|
||||||
|
|
||||||
__asm__ __volatile__ ("mull %0" :"=d" (result), "+a"(x) : "0" (y));
|
__asm__ __volatile__ ("mull %0" :"=d" (result), "+a"(x) : "0" (y));
|
||||||
|
fprintf(stderr,"quickdivide returning %d\n",result);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue