Changeset 89887 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Jun 27, 2011, 7:30:06 PM (14 years ago)
Author:
[email protected]
Message:

2011-06-27 Ryosuke Niwa <[email protected]>

Build fix attempt after r89885.

Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r89885 r89887  
     12011-06-27  Ryosuke Niwa  <[email protected]>
     2
     3        Build fix attempt after r89885.
     4
     5        * JavaScriptCore.exp:
     6        * jsc.cpp:
     7
    182011-06-27  Oliver Hunt  <[email protected]>
    29
  • trunk/Source/JavaScriptCore/JavaScriptCore.exp

    r89885 r89887  
    134134__ZN3JSC12JSGlobalData15dumpRegExpTraceEv
    135135__ZN3JSC12JSGlobalData22clearBuiltinStructuresEv
     136#ifndef NDEBUG
    136137__ZN3JSC12JSGlobalData23releaseExecutableMemoryEv
     138#endif
    137139__ZN3JSC12JSGlobalData6createENS_15ThreadStackTypeE
    138140__ZN3JSC12JSGlobalDataD1Ev
  • trunk/Source/JavaScriptCore/jsc.cpp

    r89885 r89887  
    7575static EncodedJSValue JSC_HOST_CALL functionDebug(ExecState*);
    7676static EncodedJSValue JSC_HOST_CALL functionGC(ExecState*);
     77#ifndef NDEBUG
    7778static EncodedJSValue JSC_HOST_CALL functionReleaseExecutableMemory(ExecState*);
     79#endif
    7880static EncodedJSValue JSC_HOST_CALL functionVersion(ExecState*);
    7981static EncodedJSValue JSC_HOST_CALL functionRun(ExecState*);
Note: See TracChangeset for help on using the changeset viewer.