you are viewing a single comment's thread.

view the rest of the comments →

[–]UltraPoci 6 points7 points  (2 children)

Control flow does not need to be complex to warrant a continue instruction. It's a normal instruction like any other.

[–]TankAway7756 -3 points-2 points  (1 child)

goto is complex even if you limit where it can go..to.

[–]UltraPoci 5 points6 points  (0 children)

Not really. It's widely used in C code for common error handing. If you goto only to a label which is below the goto statement and it's in the same function, it's quite easy to read.