(svn r8847) -Fix

There is not much point in hiding a normal 64bit multiplication in a function, so do not do it
This commit is contained in:
tron
2007-02-22 19:05:26 +00:00
parent 8b94d4df22
commit 2e4844abad
2 changed files with 1 additions and 6 deletions

View File

@@ -53,10 +53,6 @@ static inline uint32 BIGMULUS(uint32 a, uint32 b, int shift)
return (uint32)((uint64)a * (uint64)b >> shift);
}
static inline int64 BIGMULS(int32 a, int32 b)
{
return (int64)a * (int64)b;
}
/* OPT: optimized into an unsigned comparison */
//#define IS_INSIDE_1D(x, base, size) ((x) >= (base) && (x) < (base) + (size))