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: libgo patch committed: Merge from revision 18783 of master


On 06/04/14 18:28:17, Ian Lance Taylor wrote:
> I have committed a patch to libgo to merge from revision
> 18783:00cce3a34d7e of the master library.

Based on trunk rev. 211365, we're seeing this warning:

libgo/runtime/chan.c:484:7: error: âreceivedâ may be used uninitialized
in this function [-Werror=maybe-uninitialized]
  bool received;
       ^

Here:

 481 _Bool
 482 runtime_chanrecv2(ChanType *t, Hchan* c, byte* v)
 483 {
 484         bool received;
 485 
 486         chanrecv(t, c, v, true, &received);
 487         return received;
 488 }


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