aboutsummaryrefslogtreecommitdiff
path: root/gcc/params.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2002-05-20 18:06:55 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-05-20 18:06:55 +0000
commit6a4d67604e3bf62a35668b98cf87465d5be73ec3 (patch)
tree6f48ee558ae32b2a271ec40182fded8214a3342f /gcc/params.h
parentfe1cc883cd4a3c6095219d60a72213bbd4ac5b81 (diff)
downloadgcc-6a4d67604e3bf62a35668b98cf87465d5be73ec3.zip
gcc-6a4d67604e3bf62a35668b98cf87465d5be73ec3.tar.gz
gcc-6a4d67604e3bf62a35668b98cf87465d5be73ec3.tar.bz2
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.h')
-rw-r--r--gcc/params.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/params.h b/gcc/params.h
index c4474e4..27021aa 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)