Changeset 36244 in webkit for trunk/JavaScriptCore/wtf/Platform.h


Ignore:
Timestamp:
Sep 6, 2008, 10:44:58 PM (17 years ago)
Author:
[email protected]
Message:

Merge squirrelfish-extreme to trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/Platform.h

    r36102 r36244  
    336336#endif
    337337
     338// CTI only supports x86 at the moment, and has only been tested on Mac and Windows.
     339#if !defined(ENABLE_CTI) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN))
     340#define ENABLE_CTI 1
     341#endif
     342
     343// WREC only supports x86 at the moment, and has only been tested on Mac and Windows.
     344#if !defined(ENABLE_WREC) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN))
     345#define ENABLE_WREC 1
     346#endif
     347
     348#if ENABLE(CTI) || ENABLE(WREC)
     349#define ENABLE_MASM 1
     350#endif
     351
    338352#endif /* WTF_Platform_h */
Note: See TracChangeset for help on using the changeset viewer.