| 23 | namespace bin2llvmir { |
| 24 | |
| 25 | void RangesToDecode::addPrimary(common::Address s, common::Address e) |
| 26 | { |
| 27 | s = align(s, archInsnAlign); |
| 28 | if (e > s) |
| 29 | { |
| 30 | _primaryRanges.insert(s, e); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | void RangesToDecode::addPrimary(const common::AddressRange& r) |
| 35 | { |
no test coverage detected