Fix --disable-ion build.

This commit is contained in:
Jan de Mooij 2013-03-20 14:57:40 +01:00
parent a9086aedc6
commit f490aa467c

View File

@ -605,7 +605,11 @@ AbstractFramePtr::returnValue() const
{
if (isStackFrame())
return asStackFrame()->returnValue();
#ifdef JS_ION
return *asBaselineFrame()->returnValue();
#else
JS_NOT_REACHED("Invalid frame");
#endif
}
inline void