We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 224988b commit b005b1eCopy full SHA for b005b1e
jingle/src/context.rs
@@ -41,7 +41,7 @@ impl ArchInfoProvider for JingleContext<'_> {
41
}
42
43
fn get_registers(&self) -> impl Iterator<Item = (&VarNode, &str)> {
44
- self.info.registers.iter().map(|(a,b)| (a,b.as_str()))
+ self.info.registers.iter().map(|(a, b)| (a, b.as_str()))
45
46
47
@@ -67,7 +67,10 @@ impl<'ctx> JingleContext<'ctx> {
67
z3,
68
info: CachedArchInfo {
69
spaces: r.get_all_space_info().cloned().collect(),
70
- registers: r.get_registers().map(|(a,b)|(a.clone(),b.to_string())).collect(),
+ registers: r
71
+ .get_registers()
72
+ .map(|(a, b)| (a.clone(), b.to_string()))
73
+ .collect(),
74
default_code_space: r.get_code_space_idx(),
75
},
76
}))
0 commit comments