mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-06-05 22:39:13 +02:00
fix mips build by reverting files back
- MIPS still needs the work-around Change-Id: If68b2028bd2779ada79020bb333ec8817abe9429
This commit is contained in:
@@ -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__) */
|
||||
|
Reference in New Issue
Block a user