| 277 | } |
| 278 | |
| 279 | void Function::addUndef(unique_ptr<UndefValue> &&u) { |
| 280 | undefs.emplace_back(std::move(u)); |
| 281 | } |
| 282 | |
| 283 | void Function::addAggregate(unique_ptr<AggregateValue> &&a) { |
| 284 | aggregates.emplace_back(std::move(a)); |
no outgoing calls
no test coverage detected