diff options
author | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-01 18:51:06 +0000 |
---|---|---|
committer | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-01 18:51:06 +0000 |
commit | a5d654e2d25f72b7c87ad2ba828f34e69f95a9bb (patch) | |
tree | cb88f1e6ef61a33e619f4dd738d64d320d45f6e9 /gcc/params.h | |
parent | 664e11b6d9db37b353f5f099233b50487ed1ae8a (diff) | |
download | gcc-a5d654e2d25f72b7c87ad2ba828f34e69f95a9bb.tar.gz |
2001-05-01 Jeffrey Oldham <oldham@codesourcery.com>
* invoke.texi (Optimize Options): Add documentation for `--param
max-delay-slot-insn-search' and `--param
max-delay-slot-live-search' and reorder --param section.
* params.def: Modify initial comment.
* params.h (param_info): Add `help' member.
* toplev.c (lang_independent_params): Include `help' description.
(display_help): Print --param parameters.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41734 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/params.h')
-rw-r--r-- | gcc/params.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/params.h b/gcc/params.h index d97e7bbc396..7fa06ff16dd 100644 --- a/gcc/params.h +++ b/gcc/params.h @@ -48,6 +48,8 @@ typedef struct param_info const char *option; /* The associated value. */ int value; + /* A short description of the option. */ + const char *help; } param_info; /* An array containing the compiler parameters and their current |