| 3282 | |
| 3283 | |
| 3284 | void Switch::addTarget(Value &val, const BasicBlock &target) { |
| 3285 | targets.emplace_back(&val, &target); |
| 3286 | } |
| 3287 | |
| 3288 | void Switch::replaceTargetWith(const BasicBlock *from, const BasicBlock *to) { |
| 3289 | if (default_target == from) |
no outgoing calls
no test coverage detected