(svn r8727) -Cleanup (r8366): Remove BIGMULSS64 since it isn't used any more.
authormaedhros
Wed, 14 Feb 2007 09:39:04 +0000
changeset 6006 95b48e822a10
parent 6005 f9ddc290e8b0
child 6007 0d658ca8754c
(svn r8727) -Cleanup (r8366): Remove BIGMULSS64 since it isn't used any more.
src/macros.h
--- a/src/macros.h	Wed Feb 14 09:34:12 2007 +0000
+++ b/src/macros.h	Wed Feb 14 09:39:04 2007 +0000
@@ -50,10 +50,6 @@
 	return (int32)(((int64)(a) * (int64)(b)) >> (shift));
 }
 
-static inline int64 BIGMULSS64(int64 a, int64 b, int shift) {
-	return ((a) * (b)) >> (shift);
-}
-
 static inline uint32 BIGMULUS(uint32 a, uint32 b, int shift) {
 	return (uint32)(((uint64)(a) * (uint64)(b)) >> (shift));
 }