Changeset 37500 in webkit for trunk/JavaScriptCore/VM/Machine.h
- Timestamp:
- Oct 10, 2008, 10:49:39 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/Machine.h
r37457 r37500 62 62 #endif 63 63 64 #if USE(FAST_CALL_CTI_ARGUMENT) 65 64 66 #if COMPILER(MSVC) 65 #if USE(FAST_CALL_CTI_ARGUMENT)66 67 #define SFX_CALL __fastcall 68 #elif COMPILER(GCC) 69 #define SFX_CALL __attribute__ ((fastcall)) 67 70 #else 71 #error Need to support fastcall calling convention in this compiler 72 #endif 73 74 #else 75 76 #if COMPILER(MSVC) 68 77 #define SFX_CALL __cdecl 69 #endif70 78 #else 71 79 #define SFX_CALL 80 #endif 72 81 73 82 #endif
Note:
See TracChangeset
for help on using the changeset viewer.