You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go has more strict rules regarding what goto jumps are valid.
cxgo currently doesn't reflow goto automatically. So "bad" goto will fail to compile in Go.
There is a workaround implemented in cxgo as one of the "ugly" ways to make the code compile. This workaround will completely flatten the code in a specified function.
We can try to implement a proper reflow algorithm, since those kind of goto statements are quite common.
The text was updated successfully, but these errors were encountered:
Go has more strict rules regarding what
goto
jumps are valid.cxgo
currently doesn't reflowgoto
automatically. So "bad"goto
will fail to compile in Go.There is a workaround implemented in
cxgo
as one of the "ugly" ways to make the code compile. This workaround will completely flatten the code in a specified function.We can try to implement a proper reflow algorithm, since those kind of
goto
statements are quite common.The text was updated successfully, but these errors were encountered: