diff options
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index c7e5440504a..9f1bb79e8f3 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1360,7 +1360,7 @@ print_switch_values (FILE *file, int pos, int max, for (j = 0; j < cl_options_count; j++) if ((cl_options[j].flags & CL_REPORT) - && option_enabled (&cl_options[j]) > 0) + && option_enabled (j) > 0) pos = print_single_switch (file, pos, max, indent, sep, term, "", cl_options[j].opt_text); |