Title: [104473] trunk/Source/_javascript_Core
Revision
104473
Author
[email protected]
Date
2012-01-09 12:02:11 -0800 (Mon, 09 Jan 2012)

Log Message

There is no support for fastcall in Solaris Studio.
Fixes build on Solaris.
https://bugs.webkit.org/show_bug.cgi?id=75736

Patch by Pavel Heimlich <[email protected]> on 2012-01-09
Reviewed by Gavin Barraclough.

* jit/JITStubs.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (104472 => 104473)


--- trunk/Source/_javascript_Core/ChangeLog	2012-01-09 19:46:30 UTC (rev 104472)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-01-09 20:02:11 UTC (rev 104473)
@@ -1,5 +1,15 @@
 2012-01-09  Pavel Heimlich  <[email protected]>
 
+        There is no support for fastcall in Solaris Studio.
+        Fixes build on Solaris.
+        https://bugs.webkit.org/show_bug.cgi?id=75736
+
+        Reviewed by Gavin Barraclough.
+
+        * jit/JITStubs.h:
+
+2012-01-09  Pavel Heimlich  <[email protected]>
+
         Fix build failure on Solaris
         https://bugs.webkit.org/show_bug.cgi?id=75733
 

Modified: trunk/Source/_javascript_Core/jit/JITStubs.h (104472 => 104473)


--- trunk/Source/_javascript_Core/jit/JITStubs.h	2012-01-09 19:46:30 UTC (rev 104472)
+++ trunk/Source/_javascript_Core/jit/JITStubs.h	2012-01-09 20:02:11 UTC (rev 104473)
@@ -269,6 +269,8 @@
     #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
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to