Control-Flow of Conditionals
IfStmt - if
Statements
Successors Originate from the Condition
Example Result:
if (my_rand())
{
printf("simple_block 1\n");
printf("simple_block 2\n");
}
void simple_no_block(){
if (my_rand())
printf("simple_no_block\n");
printf("return\n");
}
The following query will not yield results:
Get Children to Access Elements of Successors
Will return the individual printf()
s from the following statement (instead of the whole code block):
False Successors are not Necessarily Part of if
This query:
...will return this (there is anelse
statement):
void simple_block()
{
if (my_rand())
{
printf("simple_block 1\n");
printf("simple_block 2\n");
}
else
{
printf("simple_block else 1\n");
printf("simple_block else 2\n");
}
printf("return\n");
}
...but also this (no else
statement):
GotoStmt - goto
Statements
This query will return:
... all of the following:
void
simple_block_goto() // The function itself!
{
if (my_rand()) {
printf("simple_block 1\n");
printf("simple_block 2\n");
} else {
printf("simple_block else 1\n");
printf("simple_block else 2\n");
goto label;
}
printf("unconditional\n");
label: //The label
printf("return\n"); // The statements after the label
// The invisible return
}