src/share/vm/compiler/abstractCompiler.hpp

Print this page

        

*** 20,29 **** --- 20,34 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP + #define SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP + + #include "ci/compilerInterface.hpp" + typedef void (*initializer)(void); class AbstractCompiler : public CHeapObj { private: bool _is_initialized; // Mark whether compiler object is initialized
*** 86,90 **** --- 91,97 ---- // Print compilation timers and statistics virtual void print_timers() { ShouldNotReachHere(); } }; + + #endif // SHARE_VM_COMPILER_ABSTRACTCOMPILER_HPP