src/share/vm/prims/forte.hpp

Print this page
rev 4899 : 8019973: PPC64 (part 11): Fix IA64 preprocessor conditionals on AIX.
Summary: On AIX 7.1 systemcfg.h defines IA64 unconditionally, so test for !AIX where IA64 is used. Clean up old gcc bug workaround (ATTR) and includes in forte.cpp.

*** 23,37 **** --- 23,43 ---- */ #ifndef SHARE_VM_PRIMS_FORTE_HPP #define SHARE_VM_PRIMS_FORTE_HPP + #include "utilities/macros.hpp" + // Interface to Forte support. class Forte : AllStatic { public: + #if defined(SOLARIS) || (defined(LINUX) && defined(X86)) static void register_stub(const char* name, address start, address end) NOT_JVMTI_RETURN; // register internal VM stub + #else + static void register_stub(const char* name, address start, address end) {} + #endif }; #endif // SHARE_VM_PRIMS_FORTE_HPP