diff options
Diffstat (limited to 'gcc/params.h')
-rw-r--r-- | gcc/params.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/params.h b/gcc/params.h index 65802245924..82870585293 100644 --- a/gcc/params.h +++ b/gcc/params.h @@ -1,5 +1,5 @@ /* params.h - Run-time parameters. - Copyright (C) 2001-2013 Free Software Foundation, Inc. + Copyright (C) 2001-2014 Free Software Foundation, Inc. Written by Mark Mitchell <mark@codesourcery.com>. This file is part of GCC. @@ -38,7 +38,7 @@ along with GCC; see the file COPYING3. If not see /* The information associated with each parameter. */ -typedef struct param_info +struct param_info { /* The name used with the `--param <name>=<value>' switch to set this value. */ @@ -55,7 +55,7 @@ typedef struct param_info /* A short description of the option. */ const char *const help; -} param_info; +}; /* An array containing the compiler parameters and their current values. */ @@ -79,14 +79,14 @@ extern void set_param_value (const char *name, int value, /* The parameters in use by language-independent code. */ -typedef enum compiler_param +enum compiler_param { #define DEFPARAM(enumerator, option, msgid, default, min, max) \ enumerator, #include "params.def" #undef DEFPARAM LAST_PARAM -} compiler_param; +}; /* The value of the parameter given by ENUM. Not an lvalue. */ #define PARAM_VALUE(ENUM) \ |