Ignore:
Timestamp:
May 21, 2010, 1:52:30 PM (15 years ago)
Author:
[email protected]
Message:

2010-05-21 Geoffrey Garen <[email protected]>

Reviewed by Gavin Barraclough.

Split out JITCall32_64.cpp, and tightened up some #ifdefs in the hopes
of improving compile times.
https://bugs.webkit.org/show_bug.cgi?id=39507

  • JavaScriptCore.xcodeproj/project.pbxproj:
  • jit/JIT.cpp:
  • jit/JITArithmetic.cpp:
  • jit/JITArithmetic32_64.cpp:
  • jit/JITCall.cpp:
  • jit/JITCall32_64.cpp: Copied from jit/JITCall.cpp.
  • jit/JITOpcodes.cpp:
  • jit/JITOpcodes32_64.cpp:
  • jit/JITPropertyAccess.cpp:
  • jit/JITPropertyAccess32_64.cpp:
  • jit/JITStubs.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/jit/JITArithmetic32_64.cpp

    r59336 r59955  
    2525
    2626#include "config.h"
     27
     28#if ENABLE(JIT)
     29#if USE(JSVALUE32_64)
    2730#include "JIT.h"
    28 
    29 #if ENABLE(JIT)
    3031
    3132#include "CodeBlock.h"
     
    4647
    4748namespace JSC {
    48 
    49 #if USE(JSVALUE32_64)
    5049
    5150void JIT::emit_op_negate(Instruction* currentInstruction)
     
    14051404/* ------------------------------ END: OP_MOD ------------------------------ */
    14061405
     1406} // namespace JSC
     1407
    14071408#endif // USE(JSVALUE32_64)
    1408 
    1409 }
    1410 
    14111409#endif // ENABLE(JIT)
Note: See TracChangeset for help on using the changeset viewer.