diff options
author | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-23 02:57:04 +0000 |
---|---|---|
committer | zack <zack@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-23 02:57:04 +0000 |
commit | 25afff2f90d918f58f7554cd615c239188e9cdde (patch) | |
tree | b882a6f62606e26f3ef85947c67ec1f9b83c3e57 /gcc/params.h | |
parent | 3d1c8aeecd79bff96ae05b620f6d19a63fd303f9 (diff) | |
download | gcc-25afff2f90d918f58f7554cd615c239188e9cdde.tar.gz |
* params.h: Rename arguments of DEFPARAM so that it will be
recognized as a translation keyword.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49122 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/params.h')
-rw-r--r-- | gcc/params.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/params.h b/gcc/params.h index 2d2619f5f40..33eec39ee9a 100644 --- a/gcc/params.h +++ b/gcc/params.h @@ -72,8 +72,8 @@ extern void set_param_value typedef enum compiler_param { -#define DEFPARAM(ENUM, OPTION, HELP, DEFAULT) \ - ENUM, +#define DEFPARAM(enumerator, option, msgid, default) \ + enumerator, #include "params.def" #undef DEFPARAM LAST_PARAM |