Return RegInfo by value from TargetIsa::register_info().

The struct is just a pair of static references, and we don't need the
double indirection.
This commit is contained in:
Jakob Stoklund Olesen
2017-02-14 16:00:33 -08:00
parent 408dc4e72e
commit 1fa3ddf018
7 changed files with 11 additions and 10 deletions

View File

@@ -49,8 +49,8 @@ impl TargetIsa for Isa {
&self.shared_flags
}
fn register_info(&self) -> &RegInfo {
&registers::INFO
fn register_info(&self) -> RegInfo {
registers::INFO.clone()
}
fn encode(&self, _: &DataFlowGraph, inst: &InstructionData) -> Result<Encoding, Legalize> {