[PATCH] Fix PR87682

Richard Biener rguenther@suse.de
Mon Oct 22 12:00:00 GMT 2018


Bootstrapped on x86_64-unknown-linux-gnu, applied.

Richard.

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

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

Index: gcc/mem-stats.h
===================================================================
--- gcc/mem-stats.h	(revision 265317)
+++ gcc/mem-stats.h	(working copy)
@@ -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.  */



More information about the Gcc-patches mailing list