Remove segment for an instruction
| 101 | |
| 102 | // Remove segment for an instruction |
| 103 | void remove(instruction_ref ins) |
| 104 | { |
| 105 | auto it = ins2segment.find(ins); |
| 106 | if(it != ins2segment.end()) |
| 107 | { |
| 108 | ins2segment.erase(it); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | std::size_t max() |
| 113 | { |