Commit e83421c0 by Richard Biener Committed by Richard Biener

re PR lto/77305 (-fdump-tree-all and -flto causes ICE)

2016-08-23  Richard Biener  <rguenther@suse.de>

	PR middle-end/77305
	* statistics.c (statistics_counter_event): Robustify against
	NULL current_pass.

From-SVN: r239683
parent 9c810a4e
2016-08-23 Richard Biener <rguenther@suse.de>
PR middle-end/77305
* statistics.c (statistics_counter_event): Robustify against
NULL current_pass.
2016-08-23 Venkataramanan Kumar
* config/i386/i386.c (processor_alias_table): Enable PTA_PRFCHW
......
......@@ -312,7 +312,8 @@ statistics_counter_event (struct function *fn, const char *id, int incr)
|| incr == 0)
return;
if (current_pass->static_pass_number != -1)
if (current_pass
&& current_pass->static_pass_number != -1)
{
counter = lookup_or_add_counter (curr_statistics_hash (), id, 0, false);
gcc_assert (!counter->histogram_p);
......@@ -325,8 +326,8 @@ statistics_counter_event (struct function *fn, const char *id, int incr)
fprintf (statistics_dump_file,
"%d %s \"%s\" \"%s\" %d\n",
current_pass->static_pass_number,
current_pass->name,
current_pass ? current_pass->static_pass_number : -1,
current_pass ? current_pass->name : "none",
id,
function_name (fn),
incr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment