MCPcopy Create free account
hub / github.com/Amanieu/regalloc3 / fmt

Method fmt

src/debug_utils/checker.rs:148–155  ·  view source on GitHub ↗
(&self, f: &mut fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

146
147impl fmt::Display for CheckerState {
148 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
149 let mut unit_values: Vec<_> = self.unit_values.iter().collect();
150 unit_values.sort_unstable_by_key(|&(unit, _)| unit);
151 for (unit, values) in &unit_values {
152 write!(f, "{unit}: {values:?} ")?;
153 }
154 Ok(())
155 }
156}
157
158/// Process instruction operands in 3 separate passes to properly model their

Callers

nothing calls this directly

Calls 1

iterMethod · 0.45

Tested by

no test coverage detected