Fix to compile properly on MIPS

Change-Id: I816d903e36605db2af691ccea9e68d7390942baa
This commit is contained in:
Dragan Mrdjan 2012-07-11 08:56:53 -07:00
parent a591209afd
commit 3eb4143fc3

@ -284,12 +284,10 @@ mips() {
$(common_top) $(common_top)
#include "vpx_config.h" #include "vpx_config.h"
void ${symbol:-rtcd}(void);
#ifdef RTCD_C #ifdef RTCD_C
void ${symbol:-rtcd}(void) static void setup_rtcd_internal(void)
{ {
$(set_function_pointers c) $(set_function_pointers c $ALL_ARCHS)
#if HAVE_DSPR2 #if HAVE_DSPR2
void dsputil_static_init(); void dsputil_static_init();
dsputil_static_init(); dsputil_static_init();
@ -298,7 +296,6 @@ dsputil_static_init();
#endif #endif
$(common_bottom) $(common_bottom)
EOF EOF
} }
unoptimized() { unoptimized() {