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
When using the IRBuilder.if_else utility the endif block is always created. However, if there are no instructions following the if/else then this turns into an empty block. For example, the following C code results in an empty endif block.
int func() {
if (something) {
return 1;
} else {
return 2;
}
}
The text was updated successfully, but these errors were encountered:
Feature request
When using the IRBuilder.if_else utility the endif block is always created. However, if there are no instructions following the if/else then this turns into an empty block. For example, the following C code results in an empty endif block.
The text was updated successfully, but these errors were encountered: