Changeset 44131 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
May 25, 2009, 8:41:33 AM (16 years ago)
Author:
[email protected]
Message:

2009-05-25 Fridrich Strba <[email protected]>

Reviewed by Maciej Stachowiak.

The functions written in assembly need to have a leading
underscore on Windows too.

  • jit/JITStubs.cpp:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r44117 r44131  
     12009-05-25  Fridrich Strba  <[email protected]>
     2
     3        Reviewed by Maciej Stachowiak.
     4
     5        The functions written in assembly need to have a leading
     6        underscore on Windows too.
     7
     8        * jit/JITStubs.cpp:
     9
    1102009-05-24  Steve Falkenburg  <[email protected]>
    211
  • trunk/JavaScriptCore/jit/JITStubs.cpp

    r44076 r44131  
    7272COMPILE_ASSERT(offsetof(struct JITStackFrame, savedEBX) == 0x1c, JITStackFrame_stub_argument_space_matches_ctiTrampoline);
    7373
    74 #if PLATFORM(DARWIN)
     74#if PLATFORM(DARWIN) || PLATFORM(WIN_OS)
    7575#define SYMBOL_STRING(name) "_" #name
    7676#else
     
    127127COMPILE_ASSERT(offsetof(struct JITStackFrame, savedRBX) == 0x48, JITStackFrame_stub_argument_space_matches_ctiTrampoline);
    128128
    129 #if PLATFORM(DARWIN)
     129#if PLATFORM(DARWIN) || PLATFORM(WIN_OS)
    130130#define SYMBOL_STRING(name) "_" #name
    131131#else
Note: See TracChangeset for help on using the changeset viewer.