(&self, state: &mut H)
| 139 | |
| 140 | impl<'a> Hash for CacheKey<'a> { |
| 141 | fn hash<H: Hasher>(&self, state: &mut H) { |
| 142 | self.stencil.hash(state); |
| 143 | self.isa.name().hash(state); |
| 144 | self.isa.triple().hash(state); |
| 145 | self.isa.flags().hash(state); |
| 146 | self.isa.isa_flags_hash_key().hash(state); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | impl<'a> CacheKey<'a> { |
no test coverage detected