mirror of
https://github.com/golang/go
synced 2024-11-22 03:44:39 -07:00
parent
97d0e8fe6c
commit
55b145e32a
@ -87,10 +87,8 @@ compile(Node *fn)
|
||||
|
||||
if(pret)
|
||||
patch(pret, pc);
|
||||
ginit();
|
||||
if(curfn->exit)
|
||||
genlist(curfn->exit);
|
||||
gclean();
|
||||
if(nerrors != 0)
|
||||
goto ret;
|
||||
if(hasdefer)
|
||||
@ -427,8 +425,9 @@ void
|
||||
cgen_ret(Node *n)
|
||||
{
|
||||
genlist(n->list); // copy out args
|
||||
if(hasdefer)
|
||||
ginscall(deferreturn, 0);
|
||||
if(hasdefer || curfn->exit)
|
||||
gjmp(pret);
|
||||
else
|
||||
gins(ARET, N, N);
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,6 @@ convlit1.go
|
||||
declbad.go
|
||||
empty.go
|
||||
escape.go
|
||||
escape1.go
|
||||
fixedbugs/bug000.go
|
||||
fixedbugs/bug001.go
|
||||
fixedbugs/bug002.go
|
||||
|
Loading…
Reference in New Issue
Block a user