src/cpu/x86/vm/c1_globals_x86.hpp

Print this page

        

*** 20,29 **** --- 20,35 ---- * or visit www.oracle.com if you need additional information or have any * questions. * */ + #ifndef CPU_X86_VM_C1_GLOBALS_X86_HPP + #define CPU_X86_VM_C1_GLOBALS_X86_HPP + + #include "utilities/globalDefinitions.hpp" + #include "utilities/macros.hpp" + // Sets the default values for platform dependent flags used by the client compiler. // (see c1_globals.hpp) #ifndef TIERED define_pd_global(bool, BackgroundCompilation, true );
*** 58,62 **** --- 64,70 ---- define_pd_global(bool, OptimizeSinglePrecision, true ); define_pd_global(bool, CSEArrayLength, false); define_pd_global(bool, TwoOperandLIRForm, true ); define_pd_global(intx, SafepointPollOffset, 256 ); + + #endif // CPU_X86_VM_C1_GLOBALS_X86_HPP