diff options
author | Jeffrey Oldham <oldham@codesourcery.com> | 2001-02-21 16:11:59 +0000 |
---|---|---|
committer | Jeffrey D. Oldham <oldham@gcc.gnu.org> | 2001-02-21 16:11:59 +0000 |
commit | 0443f602bc9f5711c31e45a995ceaf6828d08283 (patch) | |
tree | 4a642b8fbfaab6d7d53f3f8917b92e5cbc52db22 /gcc/params.h | |
parent | 7e6d8ba1842561ee144669cc97fad0fcbda65ae6 (diff) | |
download | gcc-0443f602bc9f5711c31e45a995ceaf6828d08283.tar.gz |
Makefile.in (reorg.o): Add params.h dependence.
2001-02-21 Jeffrey Oldham <oldham@codesourcery.com>
* Makefile.in (reorg.o): Add params.h dependence.
* params.def: Fix typographical error in comment.
(MAX_DELAY_SLOT_INSN_SEARCH): New parameter.
* params.h: Modify introductory comment.
(MAX_DELAY_SLOT_INSN_SEARCH): New parameter.
* reorg.c: Add dependence on params.h.
(redundant_insn): Add parameterized throttle for search.
(fill_simple_delay_slots): Add a comment explaining a variable.
Move conditional out of loop, simplifying code.
(fill_eager_delay_slots): Fix typographical error in comment.
From-SVN: r39948
Diffstat (limited to 'gcc/params.h')
-rw-r--r-- | gcc/params.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/params.h b/gcc/params.h index c097ad1c489..b60d29db349 100644 --- a/gcc/params.h +++ b/gcc/params.h @@ -27,7 +27,10 @@ Boston, MA 02111-1307, USA. place. The values of the parameters can be set on the command-line, thereby providing a way to control the amount of effort spent on particular optimization passes, or otherwise tune - the behavior of the compiler. */ + the behavior of the compiler. + + Since their values can be set on the command-line, these parameters + should not be used for non-dynamic memory allocation. */ #ifndef PARAMS_H #define PARAMS_H @@ -81,5 +84,7 @@ typedef enum compiler_param /* Macros for the various parameters. */ #define MAX_INLINE_INSNS \ PARAM_VALUE (PARAM_MAX_INLINE_INSNS) +#define MAX_DELAY_SLOT_INSN_SEARCH \ + PARAM_VALUE (PARAM_MAX_DELAY_SLOT_INSN_SEARCH) #endif /* PARAMS_H */ |