Commit cc4dc5a2 authored by Russ Cox's avatar Russ Cox

avoid JMP to ATEXT in xfol

R=ken
OCL=17833
CL=17833
parent e2fa41ab
...@@ -173,7 +173,7 @@ loop: ...@@ -173,7 +173,7 @@ loop:
if(p->as == ATEXT) if(p->as == ATEXT)
curtext = p; curtext = p;
if(p->as == AJMP) if(p->as == AJMP)
if((q = p->pcond) != P) { if((q = p->pcond) != P && q->as != ATEXT) {
p->mark = 1; p->mark = 1;
p = q; p = q;
if(p->mark == 0) if(p->mark == 0)
......
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