mirror of
https://github.com/mstorsjo/fdk-aac.git
synced 2025-06-05 22:39:13 +02:00
Fix the preprocessor statements controlling the use of mips{32,64}r1 instructions.
Only enable code using mips32/mips64 instructions if the compiler is targetting this ISA. (integer madd and msub instructions aren't available in the ``canonical'' mips ISAs)
This commit is contained in:
committed by
Martin Storsjo
parent
b95f4256ac
commit
a9eac06104
@@ -103,7 +103,7 @@ amm-info@iis.fraunhofer.de
|
||||
#if !defined(CPLX_MUL_MIPS_H)
|
||||
#define CPLX_MUL_MIPS_H
|
||||
|
||||
#if defined(__GNUC__) && defined(__mips__) && __mips_isa_rev < 6
|
||||
#if defined(__GNUC__) && defined(__mips_isa_rev) && __mips_isa_rev < 6
|
||||
|
||||
//#define FUNCTION_cplxMultDiv2_32x16
|
||||
//#define FUNCTION_cplxMultDiv2_32x16X2
|
||||
|
Reference in New Issue
Block a user