Ignore:
Timestamp:
Dec 7, 2008, 5:28:48 PM (16 years ago)
Author:
[email protected]
Message:

Put ENABLE(ASSEMBLER) guards around use of ExecutableAllocator in global data
Correct Qt and Gtk project files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSGlobalData.h

    r39083 r39087  
    121121
    122122        Heap heap;
    123 
     123#if ENABLE(ASSEMBLER)
    124124        PassRefPtr<ExecutablePool> poolForSize(size_t n) { return m_executableAllocator.poolForSize(n); }
     125#endif
    125126    private:
    126127        JSGlobalData(bool isShared = false);
     128#if ENABLE(ASSEMBLER)
    127129        ExecutableAllocator m_executableAllocator;
     130#endif
    128131
    129132        static JSGlobalData*& sharedInstanceInternal();
Note: See TracChangeset for help on using the changeset viewer.