Comments in header
| 4460 | |
| 4461 | // Comments in header |
| 4462 | void Builder::If::makeBeginElse() |
| 4463 | { |
| 4464 | // Close out the "then" by having it jump to the mergeBlock |
| 4465 | builder.createBranch(true, mergeBlock); |
| 4466 | |
| 4467 | // Make the first else block and add it to the function |
| 4468 | elseBlock = new Block(builder.getUniqueId(), *function); |
| 4469 | function->addBlock(elseBlock); |
| 4470 | |
| 4471 | // Start building the else block |
| 4472 | builder.setBuildPoint(elseBlock); |
| 4473 | } |
| 4474 | |
| 4475 | // Comments in header |
| 4476 | void Builder::If::makeEndIf() |
no test coverage detected