ir3/postsched: Fix copy-paste mistake

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13722>
This commit is contained in:
Connor Abbott 2021-11-05 15:43:13 +01:00 committed by Marge Bot
parent d9a91318b1
commit b9f61d7287

View file

@ -399,7 +399,7 @@ add_single_reg_dep(struct ir3_postsched_deps_state *state,
node->delay = MAX2(node->delay, d);
if (is_tex_or_prefetch(dep->instr))
node->has_tex_src = true;
if (is_tex_or_prefetch(dep->instr))
if (is_sfu(dep->instr))
node->has_sfu_src = true;
}