mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
nak: Two more print fixes
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26299>
This commit is contained in:
parent
eb75be66e9
commit
12f6279c39
1 changed files with 2 additions and 2 deletions
|
|
@ -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),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue