mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 00:30:11 +01:00
nak: Add a space to the end of vec and split arg lists
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24998>
This commit is contained in:
parent
8004416e38
commit
3b39778fdd
1 changed files with 2 additions and 2 deletions
|
|
@ -1387,7 +1387,7 @@ impl fmt::Display for OpVec {
|
|||
for src in &self.srcs[1..] {
|
||||
write!(f, " {}", src)?;
|
||||
}
|
||||
write!(f, "}}")
|
||||
write!(f, " }}")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1414,7 +1414,7 @@ impl fmt::Display for OpSplit {
|
|||
for dst in &self.dsts[1..] {
|
||||
write!(f, " {}", dst)?;
|
||||
}
|
||||
write!(f, "}} {}", self.src)
|
||||
write!(f, " }} {}", self.src)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue