https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92860
--- Comment #56 from David Binderman <dcb314 at hotmail dot com> ---
(In reply to Martin Liška from comment #55)
> >
> > with line numbers please :)
>
> cat -n can do that
Sorry, I went a bit hard-of-thinking there.
13029 void
13030 cl_optimization_compare (gcc_options *ptr1, gcc_options *ptr2)
13031 {
13032 if (ptr1->x_help_flag != ptr2->x_help_flag)
13033 internal_error ("%<global_options%> are modified in local
context");
13034 if (ptr1->x_no_sysroot_suffix != ptr2->x_no_sysroot_suffix)
13035 internal_error ("%<global_options%> are modified in local
context");
13036 if (ptr1->x_param_align_loop_iterations !=
ptr2->x_param_align_loop_iterations)
13037 internal_error ("%<global_options%> are modified in local
context");
13038 if (ptr1->x_param_align_threshold != ptr2->x_param_align_threshold)
13039 internal_error ("%<global_options%> are modified in local
context");
13040 if (ptr1->x_param_analyzer_bb_explosion_factor !=
ptr2->x_param_analyzer_bb_explosion_factor)
13041 internal_error ("%<global_options%> are modified in local
context");
13042 if (ptr1->x_param_analyzer_max_constraints !=
ptr2->x_param_analyzer_max_constraints)
13043 internal_error ("%<global_options%> are modified in local
context");
So the first test is failing.