PR middle-end/77475
* toplev.c (process_options): Temporarily set input_location
to UNKNOWN_LOCATION around targetm.target_option.override () call.
From-SVN: r239994
+2016-09-05 Jakub Jelinek <jakub@redhat.com>
+
+ PR middle-end/77475
+ * toplev.c (process_options): Temporarily set input_location
+ to UNKNOWN_LOCATION around targetm.target_option.override () call.
+
2016-09-05 Uros Bizjak <ubizjak@gmail.com>
PR rtl-optimization/77452
no_backend = lang_hooks.post_options (&main_input_filename);
/* Some machines may reject certain combinations of options. */
+ location_t saved_location = input_location;
+ input_location = UNKNOWN_LOCATION;
targetm.target_option.override ();
+ input_location = saved_location;
if (flag_diagnostics_generate_patch)
global_dc->edit_context_ptr = new edit_context ();