This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Add wide_int_storage::operator=


On Wed, Mar 01, 2017 at 01:08:58PM +0100, Richard Biener wrote:
> 
> In debugging a -Wuninitialized issue from ipa-cp.c which does
> 
>               vr.min = vr.max = wi::zero (INT_TYPE_SIZE);

Note maybe it would be faster to:
	vr.min = wi::zero (INT_TYPE_SIZE);
	vr.max = wi::zero (INT_TYPE_SIZE);

That doesn't mean your wide-int.h change isn't useful.

	Jakub


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]