diff --git a/src/runtime/symtab.c b/src/runtime/symtab.c index 9580cad712..578e16f9c4 100644 --- a/src/runtime/symtab.c +++ b/src/runtime/symtab.c @@ -195,6 +195,8 @@ dosrcline(Sym *sym) switch(sym->symtype) { case 't': case 'T': + if(strcmp(sym->name, (byte*)"etext") == 0) + break; f = &func[nf++]; f->src = srcstring; f->ln0 += lno;