Patch forthcoming, eventually.
Created attachment 213621 [details] the patch
Comment on attachment 213621 [details] the patch View in context: https://bugs.webkit.org/attachment.cgi?id=213621&action=review > Source/JavaScriptCore/ftl/FTLJITCode.h:61 > const Vector<RefPtr<ExecutableMemoryHandle> >& handles() const { return m_handles; } > + const Vector<RefCountedArray<LSectionWord> >& dataSections() const { return m_dataSections; } You don't need the space between the > >. > Source/JavaScriptCore/ftl/FTLJITCode.h:73 > + Vector<RefCountedArray<LSectionWord> > m_dataSections; > Vector<RefPtr<ExecutableMemoryHandle> > m_handles; You don't need the space between the > >.
(In reply to comment #2) > (From update of attachment 213621 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=213621&action=review > > > Source/JavaScriptCore/ftl/FTLJITCode.h:61 > > const Vector<RefPtr<ExecutableMemoryHandle> >& handles() const { return m_handles; } > > + const Vector<RefCountedArray<LSectionWord> >& dataSections() const { return m_dataSections; } > > You don't need the space between the > >. > > > Source/JavaScriptCore/ftl/FTLJITCode.h:73 > > + Vector<RefCountedArray<LSectionWord> > m_dataSections; > > Vector<RefPtr<ExecutableMemoryHandle> > m_handles; > > You don't need the space between the > >. Fixed.
Landed in http://trac.webkit.org/changeset/157062