Changeset 56
- Timestamp:
- Jul 14, 2010, 7:04:23 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/openjdk/hotspot/src/share/vm/utilities/globalDefinitions.hpp ¶
r2 r56 217 217 inline address_word castable_address(address x) { return address_word(x) ; } 218 218 inline 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* 222 template <class T> 223 inline address_word castable_address(T x) { return reinterpret_cast<address_word>(x) ; } 224 #endif 219 225 220 226 // Pointer subtraction.
Note:
See TracChangeset
for help on using the changeset viewer.