diff options
Diffstat (limited to 'gcc/genpreds.c')
-rw-r--r-- | gcc/genpreds.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/genpreds.c b/gcc/genpreds.c index 12a1b51f299..f4ba1f90a44 100644 --- a/gcc/genpreds.c +++ b/gcc/genpreds.c @@ -34,9 +34,9 @@ static void output_predicate_decls () { #ifdef PREDICATE_CODES - static struct { - const char *name; - RTX_CODE codes[NUM_RTX_CODE]; + static const struct { + const char *const name; + const RTX_CODE codes[NUM_RTX_CODE]; } predicate[] = { PREDICATE_CODES }; |