From ccdf81ecc3414738551a24e47e27f2a7e7c4791c Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sat, 2 May 2020 14:22:32 +0200 Subject: [PATCH] and back to unsigned to run another test... --- common_x86_64.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common_x86_64.h b/common_x86_64.h index 22d1debfc..4618e2d45 100644 --- a/common_x86_64.h +++ b/common_x86_64.h @@ -1,4 +1,4 @@ - /*********************************************************************/ +/*********************************************************************/ /* Copyright 2009, 2010 The University of Texas at Austin. */ /* All rights reserved. */ /* */ @@ -199,7 +199,7 @@ static __inline BLASLONG blas_quickdivide(BLASLONG x, BLASLONG y){ #else 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; @@ -215,7 +215,7 @@ static __inline int blas_quickdivide(unsigned int x, unsigned int y){ y = blas_quick_divide_table[y]; __asm__ __volatile__ ("mull %0" :"=d" (result), "+a"(x) : "0" (y)); - +fprintf(stderr,"quickdivide returning %d\n",result); return result; } #endif