diff options
author | Martin Liska <mliska@suse.cz> | 2019-11-12 11:10:44 +0100 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2019-11-12 10:10:44 +0000 |
commit | 8100e93b72dfe82c5f084a3d9351b8ad2ef6ab39 (patch) | |
tree | bc959de4a1ee60b1c2eca1cfdb4b32aa739b7cec /gcc/doc | |
parent | 75d6623156d3e69aa1ecc1d91c6a2c6879a97e74 (diff) | |
download | gcc-8100e93b72dfe82c5f084a3d9351b8ad2ef6ab39.zip gcc-8100e93b72dfe82c5f084a3d9351b8ad2ef6ab39.tar.gz gcc-8100e93b72dfe82c5f084a3d9351b8ad2ef6ab39.tar.bz2 |
Remove option_default_params and option_validate_param hooks.
2019-11-12 Martin Liska <mliska@suse.cz>
* common/common-target.def: Remove option_validate_param and
option_default_params.
* common/common-targhooks.c (default_option_validate_param):
Remove.
* common/common-targhooks.h (default_option_validate_param):
Remove.
* common/config/aarch64/aarch64-common.c (TARGET_OPTION_DEFAULT_PARAMS):
Remove usage of this.
(TARGET_OPTION_VALIDATE_PARAM): Likewise.
(aarch64_option_validate_param): Likewise.
(aarch64_option_default_params): Likewise
* common/config/bpf/bpf-common.c (bpf_option_default_params): Likewise.
(TARGET_OPTION_DEFAULT_PARAMS): Likewise.
* common/config/ia64/ia64-common.c (ia64_option_default_params): Likewise.
(TARGET_OPTION_DEFAULT_PARAMS): Likewise.
* common/config/powerpcspe/powerpcspe-common.c (rs6000_option_default_params): Likewise.
(TARGET_OPTION_DEFAULT_PARAMS): Likewise.
* common/config/rs6000/rs6000-common.c (rs6000_option_default_params): Likewise.
(TARGET_OPTION_DEFAULT_PARAMS): Likewise.
* common/config/sh/sh-common.c (sh_option_default_params): Likewise.
(TARGET_OPTION_DEFAULT_PARAMS): Likewise.
* config/aarch64/aarch64.c (aarch64_override_options_internal): Validate
guard_size here.
* doc/tm.texi: Remove option_default_params and option_validate_param.
* doc/tm.texi.in: Likewise.
From-SVN: r278090
Diffstat (limited to 'gcc/doc')
-rw-r--r-- | gcc/doc/tm.texi | 8 | ||||
-rw-r--r-- | gcc/doc/tm.texi.in | 4 |
2 files changed, 0 insertions, 12 deletions
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi index f6bc31b..11c236e 100644 --- a/gcc/doc/tm.texi +++ b/gcc/doc/tm.texi @@ -758,14 +758,6 @@ options are changed via @code{#pragma GCC optimize} or by using the Set target-dependent initial values of fields in @var{opts}. @end deftypefn -@deftypefn {Common Target Hook} void TARGET_OPTION_DEFAULT_PARAMS (void) -Set target-dependent default values for @option{--param} settings. -@end deftypefn - -@deftypefn {Common Target Hook} bool TARGET_OPTION_VALIDATE_PARAM (int, @var{int}) -Validate target-dependent value for @option{--param} settings. -@end deftypefn - @defmac SWITCHABLE_TARGET Some targets need to switch between substantially different subtargets during compilation. For example, the MIPS target has one subtarget for diff --git a/gcc/doc/tm.texi.in b/gcc/doc/tm.texi.in index 2739e9c..b8c41b5 100644 --- a/gcc/doc/tm.texi.in +++ b/gcc/doc/tm.texi.in @@ -736,10 +736,6 @@ options are changed via @code{#pragma GCC optimize} or by using the @hook TARGET_OPTION_INIT_STRUCT -@hook TARGET_OPTION_DEFAULT_PARAMS - -@hook TARGET_OPTION_VALIDATE_PARAM - @defmac SWITCHABLE_TARGET Some targets need to switch between substantially different subtargets during compilation. For example, the MIPS target has one subtarget for |