From 4d0fd365a984645b43c7d15338b4069f6bd06e40 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sat, 2 May 2020 20:29:25 +0200 Subject: [PATCH] Update common_x86_64.h --- common_x86_64.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_x86_64.h b/common_x86_64.h index 5c7a0238c..7ba2c8da8 100644 --- a/common_x86_64.h +++ b/common_x86_64.h @@ -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;