Commit 18cb960f authored by Ken Thompson's avatar Ken Thompson

forgot a piece of debugging

in previous change

R=rsc
http://go/go-review/1017052
parent 505fd760
......@@ -946,25 +946,9 @@ doasm(Prog *p)
if(pre)
*andptr++ = pre;
if(p->ft != 0) {
ft = oclass(&p->from);
if(ft != p->ft) {
print("***** %d %d %D\n", p->ft, ft, &p->from);
p->ft = ft;
}
}
if(p->tt != 0) {
tt = oclass(&p->to);
if(tt != p->tt) {
print("***** %d %d %D\n", p->tt, tt, &p->to);
p->tt = tt;
}
}
// if(p->ft == 0)
if(p->ft == 0)
p->ft = oclass(&p->from);
// if(p->tt == 0)
if(p->tt == 0)
p->tt = oclass(&p->to);
ft = p->ft * Ymax;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment