src/share/vm/c1/c1_globals.hpp

changeset 2314
f95d63e2154a
parent 2254
42a10fc37986
child 2508
b92c45f2bc75
     1.1 --- a/src/share/vm/c1/c1_globals.hpp	Tue Nov 23 15:01:43 2010 -0500
     1.2 +++ b/src/share/vm/c1/c1_globals.hpp	Tue Nov 23 13:22:55 2010 -0800
     1.3 @@ -22,6 +22,26 @@
     1.4   *
     1.5   */
     1.6  
     1.7 +#ifndef SHARE_VM_C1_C1_GLOBALS_HPP
     1.8 +#define SHARE_VM_C1_C1_GLOBALS_HPP
     1.9 +
    1.10 +#include "runtime/globals.hpp"
    1.11 +#ifdef TARGET_ARCH_x86
    1.12 +# include "c1_globals_x86.hpp"
    1.13 +#endif
    1.14 +#ifdef TARGET_ARCH_sparc
    1.15 +# include "c1_globals_sparc.hpp"
    1.16 +#endif
    1.17 +#ifdef TARGET_OS_FAMILY_linux
    1.18 +# include "c1_globals_linux.hpp"
    1.19 +#endif
    1.20 +#ifdef TARGET_OS_FAMILY_solaris
    1.21 +# include "c1_globals_solaris.hpp"
    1.22 +#endif
    1.23 +#ifdef TARGET_OS_FAMILY_windows
    1.24 +# include "c1_globals_windows.hpp"
    1.25 +#endif
    1.26 +
    1.27  //
    1.28  // Defines all global flags used by the client compiler.
    1.29  //
    1.30 @@ -303,6 +323,7 @@
    1.31  
    1.32  
    1.33  // Read default values for c1 globals
    1.34 -// #include "incls/_c1_globals_pd.hpp.incl"
    1.35  
    1.36  C1_FLAGS(DECLARE_DEVELOPER_FLAG, DECLARE_PD_DEVELOPER_FLAG, DECLARE_PRODUCT_FLAG, DECLARE_PD_PRODUCT_FLAG, DECLARE_NOTPRODUCT_FLAG)
    1.37 +
    1.38 +#endif // SHARE_VM_C1_C1_GLOBALS_HPP

mercurial