nak/opt_out: fix comparison in try_combine_outs

clippy complained it was comparing the same thing

Fixes: 5b355ff25a ("nak: Fix opt_out")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27216>
This commit is contained in:
Karol Herbst
2024-01-23 17:01:15 +01:00
committed by Marge Bot
parent c3fbd0dcb1
commit 0a414ecdf5
+1 -1
View File
@@ -24,7 +24,7 @@ fn try_combine_outs(emit: &mut Instr, cut: &Instr) -> bool {
return false;
}
if emit.stream != emit.stream {
if emit.stream != cut.stream {
return false;
}