See if -fno-stack-protector also fixes the crashes that caused the NEVER_INLINE_ComputeImplicitThis hack

This commit is contained in:
Luke Wagner 2011-03-23 09:57:38 -07:00
parent 6c2ea5cee1
commit 455e932889

View File

@ -2188,15 +2188,6 @@ ScriptPrologue(JSContext *cx, JSStackFrame *fp)
namespace js {
#ifdef __APPLE__
static JS_NEVER_INLINE bool
NEVER_INLINE_ComputeImplicitThis(JSContext *cx, JSObject *obj, const Value &funval, Value *vp)
{
return ComputeImplicitThis(cx, obj, funval, vp);
}
#define ComputeImplicitThis(cx, obj, funval, vp) NEVER_INLINE_ComputeImplicitThis(cx, obj, funval, vp)
#endif
JS_REQUIRES_STACK JS_NEVER_INLINE bool
Interpret(JSContext *cx, JSStackFrame *entryFrame, uintN inlineCallCount, JSInterpMode interpMode)
{