Changeset 104473 in webkit


Ignore:
Timestamp:
Jan 9, 2012 12:02:11 PM (12 years ago)
Author:
commit-queue@webkit.org
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 <tropikhajma@gmail.com> on 2012-01-09
Reviewed by Gavin Barraclough.

  • jit/JITStubs.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r104471 r104473  
     12012-01-09  Pavel Heimlich  <tropikhajma@gmail.com>
     2
     3        There is no support for fastcall in Solaris Studio.
     4        Fixes build on Solaris.
     5        https://bugs.webkit.org/show_bug.cgi?id=75736
     6
     7        Reviewed by Gavin Barraclough.
     8
     9        * jit/JITStubs.h:
     10
    1112012-01-09  Pavel Heimlich  <tropikhajma@gmail.com>
    212
  • trunk/Source/JavaScriptCore/jit/JITStubs.h

    r102545 r104473  
    270270    #elif COMPILER(GCC)
    271271    #define JIT_STUB  __attribute__ ((fastcall))
     272    #elif COMPILER(SUNCC)
     273    #define JIT_STUB
    272274    #else
    273275    #error "JIT_STUB function calls require fastcall conventions on x86, add appropriate directive/attribute here for your compiler!"
Note: See TracChangeset for help on using the changeset viewer.