Changeset 56


Ignore:
Timestamp:
Jul 14, 2010, 7:04:23 PM (15 years ago)
Author:
dmik
Message:

hotspot/src: Add support of CAST_TO_FN_PTR() for GCC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/openjdk/hotspot/src/share/vm/utilities/globalDefinitions.hpp

    r2 r56  
    217217inline address_word  castable_address(address x)              { return address_word(x) ; }
    218218inline address_word  castable_address(void* x)                { return address_word(x) ; }
     219
     220#ifdef __EMX__
     221// GCC 4.4.4 forbids implicit cast from function pointers to void*
     222template <class T>
     223inline address_word  castable_address(T x)                    { return reinterpret_cast<address_word>(x) ; }
     224#endif
    219225
    220226// Pointer subtraction.
Note: See TracChangeset for help on using the changeset viewer.