Browse Source

fix format specifier for unsigned

pull/2594/head
Martin Kroeker GitHub 6 years ago
parent
commit
4abb651af1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      common_x86_64.h

+ 2
- 2
common_x86_64.h View File

@@ -214,9 +214,9 @@ 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 %d is %d\n",yy,y);
fprintf(stderr,"y returned from divide table for %u is %u\n",yy,y);
__asm__ __volatile__ ("mull %0" :"=d" (result), "+a"(x) : "0" (y));
fprintf(stderr,"quickdivide returning %d\n",result);
fprintf(stderr,"quickdivide returning %u\n",result);
return result;
}
#endif


Loading…
Cancel
Save