In Clang API, there is a GotoStmt
and an IndirectGotoStmt
. There is very little explanation on the difference between these two kinds of goto statments. I know what a goto label;
statement is. But what is an indirect goto statement? I want to know what that is in the context of C/C++ code, not necessarily just Clang. What does it mean syntactically to have an indirect goto statement? Can you provide a code example?
Edit: The following question is interesting.