Global to rep
| 351 | |
| 352 | /// Global to rep |
| 353 | bool hasGlobalRep(const GlobalVariable* val) const |
| 354 | { |
| 355 | GlobalDefToRepMapTy::const_iterator it = GlobalDefToRepMap.find(val); |
| 356 | return it != GlobalDefToRepMap.end(); |
| 357 | } |
| 358 | |
| 359 | GlobalVariable *getGlobalRep(const GlobalVariable* val) const |
| 360 | { |
no test coverage detected