ir3/ra: Fix ra_foreach_dst_n

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14107>
This commit is contained in:
Connor Abbott 2021-12-02 19:41:12 +01:00 committed by Marge Bot
parent 077d07a983
commit 0135660dfc
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ ra_reg_is_dst(const struct ir3_register *reg)
if (ra_reg_is_src((__srcreg = (__instr)->srcs[__i])))
#define ra_foreach_dst_n(__dstreg, __n, __instr) \
foreach_dst_n(__dstreg, __n, instr) \
foreach_dst_n(__dstreg, __n, __instr) \
if (ra_reg_is_dst(__dstreg))
#define ra_foreach_dst(__dstreg, __instr) \