diff options
Diffstat (limited to 'gcc/toplev.cc')
-rw-r--r-- | gcc/toplev.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/toplev.cc b/gcc/toplev.cc index db62e3e..8af9bf5 100644 --- a/gcc/toplev.cc +++ b/gcc/toplev.cc @@ -1023,11 +1023,11 @@ general_init (const char *argv0, bool init_signals) override it later. */ tree_diagnostics_defaults (global_dc); - global_dc->show_caret + global_dc->m_source_printing.enabled = global_options_init.x_flag_diagnostics_show_caret; - global_dc->show_labels_p + global_dc->m_source_printing.show_labels_p = global_options_init.x_flag_diagnostics_show_labels; - global_dc->show_line_numbers_p + global_dc->m_source_printing.show_line_numbers_p = global_options_init.x_flag_diagnostics_show_line_numbers; global_dc->show_cwe = global_options_init.x_flag_diagnostics_show_cwe; @@ -1039,7 +1039,7 @@ general_init (const char *argv0, bool init_signals) = global_options_init.x_flag_diagnostics_show_path_depths; global_dc->show_option_requested = global_options_init.x_flag_diagnostics_show_option; - global_dc->min_margin_width + global_dc->m_source_printing.min_margin_width = global_options_init.x_diagnostics_minimum_margin_width; global_dc->show_column = global_options_init.x_flag_show_column; @@ -1082,8 +1082,8 @@ general_init (const char *argv0, bool init_signals) input_location = UNKNOWN_LOCATION; line_table = ggc_alloc<line_maps> (); linemap_init (line_table, BUILTINS_LOCATION); - line_table->reallocator = realloc_for_line_map; - line_table->round_alloc_size = ggc_round_alloc_size; + line_table->m_reallocator = realloc_for_line_map; + line_table->m_round_alloc_size = ggc_round_alloc_size; line_table->default_range_bits = 5; init_ttree (); |