Module: Mesa Branch: main Commit: 12f6279c3913d3350d5b492cc7b4928c36041de2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=12f6279c3913d3350d5b492cc7b4928c36041de2
Author: Faith Ekstrand <faith.ekstr...@collabora.com> Date: Mon Nov 20 21:56:09 2023 -0600 nak: Two more print fixes Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26299> --- src/nouveau/compiler/nak_ir.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nouveau/compiler/nak_ir.rs b/src/nouveau/compiler/nak_ir.rs index e3264f3d32f..bafe80dee74 100644 --- a/src/nouveau/compiler/nak_ir.rs +++ b/src/nouveau/compiler/nak_ir.rs @@ -3448,7 +3448,7 @@ pub struct OpIpa { impl DisplayOp for OpIpa { fn fmt_op(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - write!(f, "IPA")?; + write!(f, "ipa")?; match self.freq { InterpFreq::Pass => (), InterpFreq::Constant => write!(f, ".constant")?, @@ -4412,7 +4412,7 @@ impl From<SSAValue> for PredRef { impl fmt::Display for PredRef { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { - PredRef::None => write!(f, "PT"), + PredRef::None => write!(f, "pT"), PredRef::SSA(ssa) => ssa.fmt_plain(f), PredRef::Reg(reg) => reg.fmt(f), }