| 111 | } |
| 112 | |
| 113 | void BasicBlock::rauw(const Value &what, Value &with) { |
| 114 | for (auto &i : m_instrs) { |
| 115 | i->rauw(what, with); |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | ostream& operator<<(ostream &os, const BasicBlock &bb) { |
| 120 | if (!bb.name.empty()) |
no outgoing calls
no test coverage detected