Changeset 156654 in webkit


Ignore:
Timestamp:
Sep 30, 2013 8:42:49 AM (11 years ago)
Author:
Patrick Gansterer
Message:

Fix compilation for COMPILER(MSVC) && !CPU(X86) after r156490.
https://bugs.webkit.org/show_bug.cgi?id=122102

Reviewed by Geoffrey Garen.

_AddressOfReturnAddress() is supported for all platforms of
ths Microsoft compiler, so we can use it for !CPU(X86) too.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r156641 r156654  
     12013-09-30  Patrick Gansterer  <paroga@webkit.org>
     2
     3        Fix compilation for COMPILER(MSVC) && !CPU(X86) after r156490.
     4        https://bugs.webkit.org/show_bug.cgi?id=122102
     5
     6        Reviewed by Geoffrey Garen.
     7
     8        _AddressOfReturnAddress() is supported for all platforms of
     9        ths Microsoft compiler, so we can use it for !CPU(X86) too.
     10
     11        * jit/JITOperationWrappers.h:
     12
    1132013-09-30  Gabor Rapcsanyi  <rgabor@webkit.org>
    214
  • trunk/Source/JavaScriptCore/jit/JITOperationWrappers.h

    r156490 r156654  
    308308#define _V_FUNCTION_WRAPPER_WITH_RETURN_ADDRESS_EJCI(function) FUNCTION_WRAPPER_WITH_RETURN_ADDRESS(function, 4, SH4_SCRATCH_REGISTER)
    309309
    310 #elif COMPILER(MSVC) && CPU(X86)
     310#elif COMPILER(MSVC)
    311311
    312312#define _P_FUNCTION_WRAPPER_WITH_RETURN_ADDRESS_E(function) \
Note: See TracChangeset for help on using the changeset viewer.