Changeset 43338 in webkit for trunk/JavaScriptCore/jit


Ignore:
Timestamp:
May 7, 2009, 12:46:40 AM (16 years ago)
Author:
Simon Hausmann
Message:

2009-05-07 Simon Hausmann <[email protected]>

Reviewed by Oliver Hunt.

Fix the build on Windows without JIT: interpreter/RegisterFile.h needs
roundUpAllocationSize, which is protected by #if ENABLED(ASSEMBLER).
Moved the #ifdef down and always offer the function.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/ExecutableAllocator.h

    r41872 r43338  
    2727#define ExecutableAllocator_h
    2828
    29 #if ENABLE(ASSEMBLER)
    30 
    3129#include <wtf/Assertions.h>
    3230#include <wtf/PassRefPtr.h>
     
    5250    return size;
    5351}
     52
     53}
     54
     55#if ENABLE(ASSEMBLER)
     56
     57namespace JSC {
    5458
    5559class ExecutablePool : public RefCounted<ExecutablePool> {
Note: See TracChangeset for help on using the changeset viewer.