As written, the ! applies before the &1.
This would crash writing out missing pcdata tables
if we ever used non-contiguous IDs in a function.
We don't, but fix anyway.
LGTM=iant, minux
R=minux, iant
CC=golang-codereviews
https://golang.org/cl/
117810047
}
// pcdata.
for(i=0; i<npcdata; i++) {
- if(!(havepc[i/32]>>(i%32))&1)
+ if(((havepc[i/32]>>(i%32))&1) == 0)
continue;
funcpctab(ctxt, &pcln->pcdata[i], cursym, "pctopcdata", pctopcdata, (void*)(uintptr)i);
}