Changeset 47686 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Aug 22, 2009, 10:04:45 PM (16 years ago)
Author:
[email protected]
Message:

REGRESSION(r47639-r47660): Webkit crashes on launch on PowerPC
https://bugs.webkit.org/show_bug.cgi?id=28655

Reviewed by Mark Rowe.

  • runtime/JSFunction.cpp:

(JSC::JSFunction::JSFunction): Initialize properly with a VPtrHackExecutable.

  • wtf/Platform.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r47668 r47686  
     12009-08-22  Maciej Stachowiak  <[email protected]>
     2
     3        Reviewed by Mark Rowe.
     4
     5        REGRESSION(r47639-r47660): Webkit crashes on launch on PowerPC
     6        https://bugs.webkit.org/show_bug.cgi?id=28655
     7
     8        * runtime/JSFunction.cpp:
     9        (JSC::JSFunction::JSFunction): Initialize properly with a VPtrHackExecutable.
     10        * wtf/Platform.h:
     11
    1122009-08-22  Darin Adler  <[email protected]>
    213
  • trunk/JavaScriptCore/runtime/JSFunction.cpp

    r47641 r47686  
    5353JSFunction::JSFunction(PassRefPtr<Structure> structure)
    5454    : Base(structure)
    55 #if ENABLE(JIT)
    5655    , m_executable(adoptRef(new VPtrHackExecutable()))
    57 #endif
    5856{
    5957}
Note: See TracChangeset for help on using the changeset viewer.