mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-03 07:01:19 +00:00
Fix for Apple gcc 4.2 compiler bug triggered by bug 636364 (r=CLOSED TREE).
This commit is contained in:
parent
152621c128
commit
07d4195129
@ -2180,6 +2180,15 @@ 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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user