Implement reloc_names() for all targets.

This gets rid of the last TargetIsa method with a default
implementation.
This commit is contained in:
Jakob Stoklund Olesen
2017-05-11 17:58:11 -07:00
parent c713ea8c57
commit 6fd95c1158
5 changed files with 13 additions and 3 deletions

View File

@@ -94,4 +94,8 @@ impl TargetIsa for Isa {
fn emit_inst(&self, func: &ir::Function, inst: ir::Inst, sink: &mut CodeSink) {
binemit::emit_inst(func, inst, sink)
}
fn reloc_names(&self) -> &'static [&'static str] {
&binemit::RELOC_NAMES
}
}