diff options
Diffstat (limited to 'Source/JavaScriptCore/jit/JITStubs.h')
-rw-r--r-- | Source/JavaScriptCore/jit/JITStubs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/jit/JITStubs.h b/Source/JavaScriptCore/jit/JITStubs.h index dfaa3b113..241ace968 100644 --- a/Source/JavaScriptCore/jit/JITStubs.h +++ b/Source/JavaScriptCore/jit/JITStubs.h @@ -269,6 +269,8 @@ namespace JSC { #define JIT_STUB __fastcall #elif COMPILER(GCC) #define JIT_STUB __attribute__ ((fastcall)) + #elif COMPILER(SUNCC) + #define JIT_STUB #else #error "JIT_STUB function calls require fastcall conventions on x86, add appropriate directive/attribute here for your compiler!" #endif |