diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-20 18:06:55 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-05-20 18:06:55 +0000 |
commit | 195731ad171662442bca2721616e291e4fce1488 (patch) | |
tree | 6f48ee558ae32b2a271ec40182fded8214a3342f /gcc/params.h | |
parent | 104bbbeb1d2f6e1d81ed5b6ad56056208ca64767 (diff) | |
download | gcc-195731ad171662442bca2721616e291e4fce1488.tar.gz |
* params.c: Fix formatting.
* params.h: Likewise.
* predict.c: Likewise.
* prefix.c: Likewise.
* print-rtl.c: Likewise.
* print-tree.c: Likewise.
* profile.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@53670 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/params.h')
-rw-r--r-- | gcc/params.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/params.h b/gcc/params.h index c4474e418ee..27021aa7c7d 100644 --- a/gcc/params.h +++ b/gcc/params.h @@ -59,7 +59,7 @@ extern param_info *compiler_params; /* Add the N PARAMS to the current list of compiler parameters. */ -extern void add_params +extern void add_params PARAMS ((const param_info params[], size_t n)); /* Set the VALUE associated with the parameter given by NAME. */ @@ -75,14 +75,14 @@ typedef enum compiler_param #define DEFPARAM(enumerator, option, msgid, default) \ enumerator, #include "params.def" -#undef DEFPARAM +#undef DEFPARAM LAST_PARAM } compiler_param; /* The value of the parameter given by ENUM. */ #define PARAM_VALUE(ENUM) \ (compiler_params[(int) ENUM].value) - + /* Macros for the various parameters. */ #define MAX_INLINE_INSNS_SINGLE \ PARAM_VALUE (PARAM_MAX_INLINE_INSNS_SINGLE) |