diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-30 23:50:40 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-30 23:50:40 +0000 |
commit | 2447005502283065f2232ce09edf1b3c808a1c7f (patch) | |
tree | b3ee120a2ecf25d00fba24415c8566f83135a110 /gcc/opts.h | |
parent | ac785357337a7e170d547963987890e6284185b0 (diff) | |
download | gcc-2447005502283065f2232ce09edf1b3c808a1c7f.tar.gz |
Change attribute((option(...))) to attribute((target(...))); Do not allocate tree nodes on x86 for builtins until we generate code for the ISA; Delete hot/cold functions changing optimization; Make C++ support target specific functions; Add #pragma GCC {push_options,pop_options,reset_options} instead of #pragma GCC {target,optimize} {push,reset,pop}
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139812 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/opts.h')
-rw-r--r-- | gcc/opts.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/opts.h b/gcc/opts.h index 62ad89aa5a5..7a51a0e3b52 100644 --- a/gcc/opts.h +++ b/gcc/opts.h @@ -65,13 +65,14 @@ extern const unsigned int cl_options_count; extern const char *const lang_names[]; extern const unsigned int cl_lang_count; +#define CL_SAVE (1 << 17) /* Target-specific option for attribute. */ #define CL_PARAMS (1 << 18) /* Fake entry. Used to display --param info with --help. */ #define CL_WARNING (1 << 19) /* Enables an (optional) warning message. */ #define CL_OPTIMIZATION (1 << 20) /* Enables an (optional) optimization. */ #define CL_TARGET (1 << 21) /* Target-specific option. */ #define CL_COMMON (1 << 22) /* Language-independent. */ -#define CL_MIN_OPTION_CLASS CL_PARAMS +#define CL_MIN_OPTION_CLASS CL_SAVE #define CL_MAX_OPTION_CLASS CL_COMMON /* From here on the bits describe attributes of the options. |