Remove unused target_cpu and tune_cpu methods from ExtraBackendMethods

This commit is contained in:
bjorn3 2022-10-01 16:45:33 +00:00
parent 29edc888bd
commit 69a065ef81

View File

@ -171,15 +171,6 @@ fn target_machine_factory(&self, _sess: &Session, _opt_level: OptLevel, _feature
Ok(())
})
}
fn target_cpu<'b>(&self, _sess: &'b Session) -> &'b str {
unimplemented!();
}
fn tune_cpu<'b>(&self, _sess: &'b Session) -> Option<&'b str> {
None
// TODO(antoyo)
}
}
pub struct ModuleBuffer;