Changeset 38819 in webkit for trunk/JavaScriptCore/wtf/Platform.h
- Timestamp:
- Nov 27, 2008, 5:07:08 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/Platform.h
r38699 r38819 80 80 81 81 #if defined (__S60__) || defined (__SYMBIAN32__) 82 / / we are cross-compiling, it is not really windows82 /* we are cross-compiling, it is not really windows */ 83 83 #undef WTF_PLATFORM_WIN_OS 84 84 #undef WTF_PLATFORM_WIN … … 422 422 #endif 423 423 424 / / CTI only supports x86 at the moment, and has only been tested on Mac and Windows.424 /* CTI only supports x86 at the moment, and has only been tested on Mac and Windows. */ 425 425 #if !defined(ENABLE_JIT) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN)) 426 426 #define ENABLE_JIT 1 427 427 #endif 428 428 429 / / WREC only supports x86 at the moment, and has only been tested on Mac and Windows.429 /* WREC only supports x86 at the moment, and has only been tested on Mac and Windows. */ 430 430 #if !defined(ENABLE_WREC) && ENABLE(JIT) && PLATFORM(X86) && (PLATFORM(MAC) || PLATFORM(WIN)) 431 431 #define ENABLE_WREC 1 … … 447 447 #endif 448 448 449 / / Use "fastcall" calling convention on MSVC449 /* Use "fastcall" calling convention on MSVC */ 450 450 #if COMPILER(MSVC) 451 451 #define WTF_USE_FAST_CALL_CTI_ARGUMENT 1
Note:
See TracChangeset
for help on using the changeset viewer.