Any one seen this before? term% cat busted.c #include <u.h> #include <libc.h>
void main(void) { vlong a; int b; if (a == b) exits(nil); exits(nil); } term% 8c -FVw busted.c warning: busted.c:5 used and not set: b term% Note that a doesn't get tagged as used and not set. Brantley