| 3091 | } |
| 3092 | |
| 3093 | vector<string> Phi::sources() const { |
| 3094 | vector<string> s; |
| 3095 | for (auto &[_, bb] : values) { |
| 3096 | s.emplace_back(bb); |
| 3097 | } |
| 3098 | return s; |
| 3099 | } |
| 3100 | |
| 3101 | void Phi::replaceSourceWith(const string &from, const string &to) { |
| 3102 | for (auto &[_, bb] : values) { |
no outgoing calls
no test coverage detected