Changeset 162266 in webkit for trunk/Source/JavaScriptCore/jit


Ignore:
Timestamp:
Jan 18, 2014, 11:41:58 AM (11 years ago)
Author:
[email protected]
Message:

JavaScriptCore uses PLATFORM(MAC) when it means OS(DARWIN)
https://bugs.webkit.org/show_bug.cgi?id=99683

Reviewed by Anders Carlsson.

  • jit/ThunkGenerators.cpp:
  • tools/CodeProfile.cpp:

(JSC::symbolName):
(JSC::CodeProfile::sample):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/ThunkGenerators.cpp

    r159995 r162266  
    604604}
    605605
    606 #if CPU(X86_64) && COMPILER(GCC) && (PLATFORM(MAC) || OS(LINUX))
     606#if CPU(X86_64) && COMPILER(GCC) && (OS(DARWIN) || OS(LINUX))
    607607
    608608#define defineUnaryDoubleOpWrapper(function) \
     
    620620    static MathThunk UnaryDoubleOpWrapper(function) = &function##Thunk;
    621621
    622 #elif CPU(X86) && COMPILER(GCC) && (PLATFORM(MAC) || OS(LINUX))
     622#elif CPU(X86) && COMPILER(GCC) && (OS(DARWIN) || OS(LINUX))
    623623#define defineUnaryDoubleOpWrapper(function) \
    624624    asm( \
Note: See TracChangeset for help on using the changeset viewer.