(mut self, engine: &Engine)
| 202 | } |
| 203 | |
| 204 | fn check_compatible(mut self, engine: &Engine) -> Result<()> { |
| 205 | self.check_triple(engine)?; |
| 206 | self.check_shared_flags(engine)?; |
| 207 | self.check_isa_flags(engine)?; |
| 208 | self.check_tunables(&engine.tunables())?; |
| 209 | self.check_features(&engine.features())?; |
| 210 | Ok(()) |
| 211 | } |
| 212 | |
| 213 | fn check_triple(&self, engine: &Engine) -> Result<()> { |
| 214 | let engine_target = engine.target(); |