(&self, state: &mut H)
| 260 | |
| 261 | impl<C: BlockContext> Hash for BasicBlock<C> { |
| 262 | fn hash<H: Hasher>(&self, state: &mut H) { |
| 263 | self.function().hash(state); |
| 264 | self.block_type().hash(state); |
| 265 | state.write_usize(self.index()); |
| 266 | } |
| 267 | } |
| 268 | |
| 269 | impl<C: BlockContext> PartialEq for BasicBlock<C> { |
nothing calls this directly
no test coverage detected