diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-05-20 18:06:55 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-05-20 18:06:55 +0000 |
commit | 6a4d67604e3bf62a35668b98cf87465d5be73ec3 (patch) | |
tree | 6f48ee558ae32b2a271ec40182fded8214a3342f /gcc/params.c | |
parent | fe1cc883cd4a3c6095219d60a72213bbd4ac5b81 (diff) | |
download | gcc-6a4d67604e3bf62a35668b98cf87465d5be73ec3.tar.gz |
params.c: Fix formatting.
* params.c: Fix formatting.
* params.h: Likewise.
* predict.c: Likewise.
* prefix.c: Likewise.
* print-rtl.c: Likewise.
* print-tree.c: Likewise.
* profile.c: Likewise.
From-SVN: r53670
Diffstat (limited to 'gcc/params.c')
-rw-r--r-- | gcc/params.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gcc/params.c b/gcc/params.c index b32f9b625d0..72c67bebf3b 100644 --- a/gcc/params.c +++ b/gcc/params.c @@ -37,14 +37,14 @@ static size_t num_compiler_params; /* Add the N PARAMS to the current list of compiler parameters. */ -void +void add_params (params, n) const param_info params[]; size_t n; { /* Allocate enough space for the new parameters. */ - compiler_params = - ((param_info *) + compiler_params = + ((param_info *) xrealloc (compiler_params, (num_compiler_params + n) * sizeof (param_info))); /* Copy them into the table. */ @@ -79,6 +79,3 @@ set_param_value (name, value) /* If we didn't find this parameter, issue an error message. */ error ("invalid parameter `%s'", name); } - - - |