[Webkit-unassigned] [Bug 153138] [GTK][OSX] libjavascriptcoregtk fails to link when building debug configuration

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jan 31 17:01:07 PST 2016


https://bugs.webkit.org/show_bug.cgi?id=153138

--- Comment #3 from Jeremy Huddleston Sequoia <jeremyhu at apple.com> ---
Ah, I think it is coming from this in WriteBarrier.h:

template<class T> inline void validateCell(T cell)
{
    ASSERT_GC_OBJECT_INHERITS(cell, std::remove_pointer<T>::type::info());
}

by way of WriteBarrierInlines.h:

inline void WriteBarrierBase<T>::set(VM& vm, const JSCell* owner, T* value)
{
    ASSERT(value);
    ASSERT(!Options::useConcurrentJIT() || !isCompilationThread());
    validateCell(value);
    setEarlyValue(vm, owner, value);
}

Testing a fix.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160201/552c4fba/attachment.html>


More information about the webkit-unassigned mailing list