diff options
author | Martin Liska <mliska@suse.cz> | 2022-11-13 21:59:57 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-11-14 09:35:06 +0100 |
commit | d92b5067f0af8b34f753e463cc7538466190c2db (patch) | |
tree | cb88907305d565f7fcef3695278aa9b598d517e3 /gcc/common/common-target.def | |
parent | 3e070cff11f81051e70b613816075b66a6de61c2 (diff) | |
download | gcc-d92b5067f0af8b34f753e463cc7538466190c2db.zip gcc-d92b5067f0af8b34f753e463cc7538466190c2db.tar.gz gcc-d92b5067f0af8b34f753e463cc7538466190c2db.tar.bz2 |
Revert "sphinx: port .def files to RST"
This reverts commit c8874c5e8a7cee2933923c40f4933602da2022fb.
Diffstat (limited to 'gcc/common/common-target.def')
-rw-r--r-- | gcc/common/common-target.def | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gcc/common/common-target.def b/gcc/common/common-target.def index 12a60b4..c4c6230 100644 --- a/gcc/common/common-target.def +++ b/gcc/common/common-target.def @@ -39,7 +39,7 @@ DEFHOOK DEFHOOK (option_init_struct, - "Set target-dependent initial values of fields in :samp:`{opts}`.", +"Set target-dependent initial values of fields in @var{opts}.", void, (struct gcc_options *opts), hook_void_gcc_optionsp) @@ -65,17 +65,17 @@ DEFHOOK DEFHOOK (supports_split_stack, "Whether this target supports splitting the stack when the options\n\ -described in :samp:`{opts}` have been passed. This is called\n\ +described in @var{opts} have been passed. This is called\n\ after options have been parsed, so the target may reject splitting\n\ the stack in some configurations. The default version of this hook\n\ -returns false. If :samp:`{report}` is true, this function may issue a warning\n\ -or error; if :samp:`{report}` is false, it must simply return a value", +returns false. If @var{report} is true, this function may issue a warning\n\ +or error; if @var{report} is false, it must simply return a value", bool, (bool report, struct gcc_options *opts), hook_bool_bool_gcc_optionsp_false) DEFHOOK (get_valid_option_values, - "The hook is used for options that have a non-trivial list of\n\ +"The hook is used for options that have a non-trivial list of\n\ possible option values. OPTION_CODE is option code of opt_code\n\ enum type. PREFIX is used for bash completion and allows an implementation\n\ to return more specific completion based on the prefix. All string values\n\ @@ -89,16 +89,16 @@ DEFHOOK "Some targets like RISC-V might have complicated multilib reuse rules which\n\ are hard to implement with the current multilib scheme. This hook allows\n\ targets to override the result from the built-in multilib mechanism.\n\ -:samp:`{switches}` is the raw option list with :samp:`{n_switches}` items;\n\ -:samp:`{multilib_dir}` is the multi-lib result which is computed by the built-in\n\ +@var{switches} is the raw option list with @var{n_switches} items;\n\ +@var{multilib_dir} is the multi-lib result which is computed by the built-in\n\ multi-lib mechanism;\n\ -:samp:`{multilib_defaults}` is the default options list for multi-lib;\n\ -:samp:`{multilib_select}` is the string containing the list of supported\n\ +@var{multilib_defaults} is the default options list for multi-lib;\n\ +@var{multilib_select} is the string containing the list of supported\n\ multi-libs, and the option checking list.\n\ -:samp:`{multilib_matches}`, :samp:`{multilib_exclusions}`, and :samp:`{multilib_reuse}`\n\ -are corresponding to :samp:`{MULTILIB_MATCHES}`, :samp:`{MULTILIB_EXCLUSIONS}`,\n\ -and :samp:`{MULTILIB_REUSE}`.\n\ -The default definition does nothing but return :samp:`{multilib_dir}` directly.", +@var{multilib_matches}, @var{multilib_exclusions}, and @var{multilib_reuse}\n\ +are corresponding to @var{MULTILIB_MATCHES}, @var{MULTILIB_EXCLUSIONS},\n\ +and @var{MULTILIB_REUSE}.\n\ +The default definition does nothing but return @var{multilib_dir} directly.", const char *, (const struct switchstr *switches, int n_switches, const char *multilib_dir, @@ -125,7 +125,7 @@ DEFHOOKPOD DEFHOOKPOD (always_strip_dotdot, - "True if :samp:`..` components should always be removed from directory names\n\ + "True if @file{..} components should always be removed from directory names\n\ computed relative to GCC's internal directories, false (default) if such\n\ components should be preserved and directory names containing them passed\n\ to other tools such as the linker.", |