Changeset 52730 in webkit


Ignore:
Timestamp:
Jan 4, 2010 4:01:40 AM (14 years ago)
Author:
mjs@apple.com
Message:

2010-01-04 Maciej Stachowiak <mjs@apple.com>

Reviewed by Adam Barth.

Document CPU() macros in comments.
https://bugs.webkit.org/show_bug.cgi?id=33147

  • wtf/Platform.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r52729 r52730  
     12010-01-04  Maciej Stachowiak  <mjs@apple.com>
     2
     3        Reviewed by Adam Barth.
     4
     5        Document CPU() macros in comments.
     6        https://bugs.webkit.org/show_bug.cgi?id=33147
     7
     8        * wtf/Platform.h:
     9
    1102010-01-04  Maciej Stachowiak  <mjs@apple.com>
    211
  • trunk/JavaScriptCore/wtf/Platform.h

    r52729 r52730  
    5858/* ==== COMPILER() - the compiler being used to build the project ==== */
    5959
    60 /* COMPILER(MSVC) */
    61 /* COMPILER(MSVC7) */
     60/* COMPILER(MSVC) Microsoft Visual C++ */
     61/* COMPILER(MSVC7) Microsoft Visual C++ v7 or lower*/
    6262#if defined(_MSC_VER)
    6363#define WTF_COMPILER_MSVC 1
     
    6767#endif
    6868
    69 /* COMPILER(RVCT) */
     69/* COMPILER(RVCT)  - ARM RealView Compilation Tools */
    7070#if defined(__CC_ARM) || defined(__ARMCC__)
    7171#define WTF_COMPILER_RVCT 1
    7272#endif
    7373
    74 /* COMPILER(GCC) */
     74/* COMPILER(GCC) - GNU Compiler Collection */
    7575/* --gnu option of the RVCT compiler also defines __GNUC__ */
    7676#if defined(__GNUC__) && !COMPILER(RVCT)
     
    7979#endif
    8080
    81 /* COMPILER(MINGW) */
     81/* COMPILER(MINGW) - MinGW GCC */
    8282#if defined(MINGW) || defined(__MINGW32__)
    8383#define WTF_COMPILER_MINGW 1
    8484#endif
    8585
    86 /* COMPILER(WINSCW) */
     86/* COMPILER(WINSCW) - CodeWarrior for Symbian emulator */
    8787#if defined(__WINSCW__)
    8888#define WTF_COMPILER_WINSCW 1
Note: See TracChangeset for help on using the changeset viewer.