(&self, other: &Self)
| 2127 | |
| 2128 | impl<I: VCodeInst> Ord for MachLabelFixup<I> { |
| 2129 | fn cmp(&self, other: &Self) -> Ordering { |
| 2130 | other.deadline().cmp(&self.deadline()) |
| 2131 | } |
| 2132 | } |
| 2133 | |
| 2134 | /// A relocation resulting from a compilation. |
no test coverage detected