(svn r5902) -Fix [FS#26]: BIGMULS return-type fix (Graphite)
authorDarkvater
Tue, 15 Aug 2006 00:19:01 +0000
changeset 4274 bd088a325923
parent 4273 6467c2c54d58
child 4275 5350bd872282
(svn r5902) -Fix [FS#26]: BIGMULS return-type fix (Graphite)
macros.h
--- a/macros.h	Tue Aug 15 00:14:57 2006 +0000
+++ b/macros.h	Tue Aug 15 00:19:01 2006 +0000
@@ -55,7 +55,7 @@
 }
 
 static inline int64 BIGMULS(int32 a, int32 b) {
-	return (int32)(((int64)(a) * (int64)(b)));
+	return (int64)(a) * (int64)(b);
 }
 
 /* OPT: optimized into an unsigned comparison */