Update common_x86_64.h

This commit is contained in:
Martin Kroeker 2020-05-02 20:29:25 +02:00 committed by GitHub
parent 4abb651af1
commit 4d0fd365a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){
#endif
y = blas_quick_divide_table[y];
fprintf(stderr,"y returned from divide table for %u is %u\n",yy,y);
fprintf(stderr,"y returned from divide table for %u is %x\n",yy,y);
__asm__ __volatile__ ("mull %0" :"=d" (result), "+a"(x) : "0" (y));
fprintf(stderr,"quickdivide returning %u\n",result);
return result;