Commit e2fa41ab authored by Russ Cox's avatar Russ Cox

fix JMP main(SB)

R=ken
OCL=17832
CL=17832
parent 418b97c6
...@@ -456,7 +456,7 @@ patch(void) ...@@ -456,7 +456,7 @@ patch(void)
for(p = firstp; p != P; p = p->link) { for(p = firstp; p != P; p = p->link) {
if(p->as == ATEXT) if(p->as == ATEXT)
curtext = p; curtext = p;
if(p->as == ACALL || p->as == ARET) { if(p->as == ACALL || p->as == AJMP) {
s = p->to.sym; s = p->to.sym;
if(s) { if(s) {
if(debug['c']) if(debug['c'])
......
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