This is the mail archive of the gcc-bugs@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]

Re: alpha bootstrap failure wrt loop


> Or actually, can someone tell me where the + 1 in
> 
> 	max_uid_for_loop = get_max_uid () + 1;
> 
> comes from?  It's from 

Indeed, that seems to be the problem.  get_max_uid already returns the
next uid to be assigned - not the last one, as the name would suggest.

So that should be

	max_uid_for_loop = get_max_uid ();


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