Bug 523416 - fix the blx_lr_broken implementation, r=sayrer.

This commit is contained in:
Graydon Hoare 2009-10-20 12:28:37 -07:00
parent 8a46c69485
commit c8132ae487
2 changed files with 8 additions and 3 deletions

View File

@ -42,9 +42,7 @@
#ifdef UNDER_CE
#include <cmnintrin.h>
static inline bool blx_lr_broken() {
return false;
}
extern "C" bool blx_lr_broken();
#endif
#if defined(AVMPLUS_LINUX)

View File

@ -45,6 +45,13 @@
typedef void *maddr_ptr;
#endif
#if defined(AVMPLUS_ARM) && defined(UNDER_CE)
extern "C" bool
blx_lr_broken() {
return false;
}
#endif
using namespace avmplus;
Config AvmCore::config;