| 1170 | } |
| 1171 | |
| 1172 | void DUContext::deleteUsesRecursively() |
| 1173 | { |
| 1174 | deleteUses(); |
| 1175 | |
| 1176 | for (DUContext* childContext : std::as_const(m_dynamicData->m_childContexts)) { |
| 1177 | childContext->deleteUsesRecursively(); |
| 1178 | } |
| 1179 | } |
| 1180 | |
| 1181 | bool DUContext::inDUChain() const |
| 1182 | { |