Commit 9e85c790 authored by Rob Pike's avatar Rob Pike

fix initialization of noreturn

R=ken
DELTA=3  (0 added, 0 deleted, 3 changed)
OCL=34283
CL=34283
parent 8aec612a
...@@ -1551,9 +1551,9 @@ noreturn(Prog *p) ...@@ -1551,9 +1551,9 @@ noreturn(Prog *p)
if(symlist[0] == S) { if(symlist[0] == S) {
symlist[0] = pkglookup("throwindex", "sys"); symlist[0] = pkglookup("throwindex", "sys");
symlist[0] = pkglookup("throwslice", "sys"); symlist[1] = pkglookup("throwslice", "sys");
symlist[0] = pkglookup("throwinit", "sys"); symlist[2] = pkglookup("throwinit", "sys");
symlist[1] = pkglookup("panicl", "sys"); symlist[3] = pkglookup("panicl", "sys");
} }
s = p->to.sym; s = p->to.sym;
......
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