(&self, f: &mut fmt::Formatter<'_>)
| 261 | |
| 262 | impl fmt::LowerHex for Val { |
| 263 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 264 | match self { |
| 265 | Val::XReg(v) => fmt::LowerHex::fmt(v, f), |
| 266 | Val::FReg(v) => fmt::LowerHex::fmt(v, f), |
| 267 | #[cfg(not(pulley_disable_interp_simd))] |
| 268 | Val::VReg(v) => fmt::LowerHex::fmt(v, f), |
| 269 | } |
| 270 | } |
| 271 | } |
| 272 | |
| 273 | impl From<XRegVal> for Val { |
nothing calls this directly
no test coverage detected