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
Essentially, decompiling machine code with jumps into, e.g., C with loops and if/else-constructs is equivalent to translating GOTOs into loops and conditions. Therefore, this issue could potentially benefit from looking into decompiler algorithms. Possible options include FernFlower and HexRay's Decompiler.
GOTO statements should be easy to translate into "normal" code with if/else and do/while.
Cite Dijkstra why one should do this: A case against the GO TO statement.
Here is an article on this: http://www.cs.unibo.it/~martini/PP/bohm-jac.pdf
The text was updated successfully, but these errors were encountered: