Changeset 38477 in webkit for trunk/JavaScriptCore/wtf/Platform.h
- Timestamp:
- Nov 16, 2008, 8:25:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/Platform.h
r38428 r38477 405 405 406 406 // CTI only supports x86 at the moment, and has only been tested on Mac and Windows. 407 #if !defined(ENABLE_ CTI) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN))408 #define ENABLE_ CTI1407 #if !defined(ENABLE_JIT) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN)) 408 #define ENABLE_JIT 1 409 409 #endif 410 410 411 411 // WREC only supports x86 at the moment, and has only been tested on Mac and Windows. 412 #if !defined(ENABLE_WREC) && ENABLE( CTI) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN))412 #if !defined(ENABLE_WREC) && ENABLE(JIT) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN)) 413 413 #define ENABLE_WREC 1 414 414 #endif 415 415 416 #if ENABLE( CTI) || ENABLE(WREC)416 #if ENABLE(JIT) || ENABLE(WREC) 417 417 #define ENABLE_MASM 1 418 418 #endif
Note:
See TracChangeset
for help on using the changeset viewer.