| 3071 | } |
| 3072 | |
| 3073 | void Phi::removeValue(const string &BB_name) { |
| 3074 | for (auto I = values.begin(); I != values.end(); ) { |
| 3075 | if (I->second == BB_name) { |
| 3076 | I = values.erase(I); |
| 3077 | } else { |
| 3078 | ++I; |
| 3079 | } |
| 3080 | } |
| 3081 | } |
| 3082 | |
| 3083 | void Phi::removeValue(const Value *value) { |
| 3084 | for (auto I = values.begin(); I != values.end(); ) { |
no test coverage detected