| 72 | /// Comparator for sorting the functions set. We want to keep the order |
| 73 | /// deterministic for testing, etc. |
| 74 | struct Compare { |
| 75 | bool operator()(const Function *LHS, const Function *RHS) const { |
| 76 | return LHS->getName() < RHS->getName(); |
| 77 | } |
| 78 | }; |
| 79 | |
| 80 | CVPLatticeVal() : LatticeState(Undefined) {} |
| 81 | CVPLatticeVal(CVPLatticeStateTy LatticeState) : LatticeState(LatticeState) {} |