Commit 2c2f8674 by Richard Biener Committed by Richard Biener

re PR c/87682 (gcc/mem-stats.h:172: possible broken comparison operator ?)

2018-10-22  Richard Biener  <rguenther@suse.de>

	PR middle-end/87682
	* mem-stats.h (mem_usage::operator==): Fix pasto.

From-SVN: r265376
parent 893ade8b
2018-10-22 Richard Biener <rguenther@suse.de>
PR middle-end/87682
* mem-stats.h (mem_usage::operator==): Fix pasto.
2018-10-22 Richard Biener <rguenther@suse.de>
PR tree-optimization/87640
* tree-vrp.c (set_value_range_with_overflow): Decompose
incomplete result.
......@@ -169,7 +169,7 @@ struct mem_usage
{
return (m_allocated == second.m_allocated
&& m_peak == second.m_peak
&& m_allocated == second.m_allocated);
&& m_times == second.m_times);
}
/* Comparison operator. */
......
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