Changeset 61533 in webkit


Ignore:
Timestamp:
Jun 21, 2010 1:10:55 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-21 Patrick Gansterer <paroga@paroga.com>

Reviewed by Kent Tamura.

Buildfix after r61338.
https://bugs.webkit.org/show_bug.cgi?id=40888

roundUpAllocationSize is needed in RegisterFile.h.

  • jit/ExecutableAllocator.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r61489 r61533  
     12010-06-21  Patrick Gansterer  <paroga@paroga.com>
     2
     3        Reviewed by Kent Tamura.
     4
     5        Buildfix after r61338.
     6        https://bugs.webkit.org/show_bug.cgi?id=40888
     7
     8        roundUpAllocationSize is needed in RegisterFile.h.
     9
     10        * jit/ExecutableAllocator.h:
     11
    1122010-06-19  Kwang Yul Seo  <skyul@company100.net>
    213
  • trunk/JavaScriptCore/jit/ExecutableAllocator.h

    r61338 r61533  
    2626#ifndef ExecutableAllocator_h
    2727#define ExecutableAllocator_h
    28 
    29 #if ENABLE(JIT)
    30 
    3128#include <stddef.h> // for ptrdiff_t
    3229#include <limits>
     
    8380}
    8481
    85 #if ENABLE(ASSEMBLER)
     82#if ENABLE(JIT) && ENABLE(ASSEMBLER)
    8683
    8784namespace JSC {
     
    319316}
    320317
    321 #endif // ENABLE(ASSEMBLER)
    322 
    323 #endif // ENABLE(JIT)
     318#endif // ENABLE(JIT) && ENABLE(ASSEMBLER)
    324319
    325320#endif // !defined(ExecutableAllocator)
Note: See TracChangeset for help on using the changeset viewer.