Changeset 272
- Timestamp:
- Mar 4, 2011, 12:30:42 PM (14 years ago)
- Location:
- trunk/openjdk/hotspot/src/share/vm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk/hotspot/src/share/vm/adlc/arena.hpp
r2 r272 68 68 class Chunk: public CHeapObj { 69 69 public: 70 #if defined(__GNUC__) && (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40500 71 // make sure op delete(void*, size) isn't treated as a usual deallocation 72 // function in GCC 4.5.x (see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42115) 73 void operator delete(void* p) { CHeapObj::operator delete(p); } 74 #endif 70 75 void* operator new(size_t size, size_t length); 71 76 void operator delete(void* p, size_t length); -
trunk/openjdk/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp
r58 r272 91 91 #ifdef __EMX__ 92 92 // we disable BSD visibility for the compiler so define these manually 93 intfinite(double) __pure2;94 intisnanf(float) __pure2;93 extern "C" int finite(double) __pure2; 94 extern "C" int isnanf(float) __pure2; 95 95 #define S_IREAD S_IRUSR 96 96 #define S_IWRITE S_IWUSR
Note:
See TracChangeset
for help on using the changeset viewer.