From 50d9a4cb1ec671f8ca1da5ad4262fb6e77a924fd Mon Sep 17 00:00:00 2001 From: Raghu Gandham Date: Tue, 10 Jul 2012 17:34:45 -0700 Subject: GCC 4.4 and later cannot handle h constructs. Fix to replace the assembly constructs. Change-Id: I47509c20ee32f04ce42105563d2d4013910da531 --- libFDK/include/mips/fixmul_mips.h | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'libFDK/include/mips/fixmul_mips.h') diff --git a/libFDK/include/mips/fixmul_mips.h b/libFDK/include/mips/fixmul_mips.h index 4fb72f7..0e7af0d 100644 --- a/libFDK/include/mips/fixmul_mips.h +++ b/libFDK/include/mips/fixmul_mips.h @@ -100,14 +100,8 @@ amm-info@iis.fraunhofer.de inline INT fixmuldiv2_DD (const INT a, const INT b) { - INT result ; - asm ("mult %1,%2;\n" - : "=hi" (result) - : "d" (a), "r" (b) - : "lo"); - - return result ; + return ((long long) a * b) >> 32; } #endif /* (__GNUC__) && defined(__mips__) */ -- cgit v1.2.3