r600: Fix up some mis-indentation of blocks.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14319>
This commit is contained in:
Emma Anholt 2022-02-13 08:20:19 -08:00 committed by Marge Bot
parent dab745f3b4
commit 04a6d7b380
1 changed files with 8 additions and 10 deletions

View File

@ -4491,18 +4491,16 @@ static void tgsi_dst(struct r600_shader_ctx *ctx,
if (tgsi_dst->Register.Indirect) { if (tgsi_dst->Register.Indirect) {
cf.index_gpr = ctx->bc->ar_reg; cf.index_gpr = ctx->bc->ar_reg;
} } else {
else { cf.array_base += idx;
cf.array_base += idx; cf.array_size = 0;
cf.array_size = 0; }
}
r = r600_bytecode_add_pending_output(ctx->bc, &cf); r = r600_bytecode_add_pending_output(ctx->bc, &cf);
if (r) if (r)
return; return;
r600_bytecode_add_ack(ctx->bc);
r600_bytecode_add_ack(ctx->bc);
} }
return; return;
} }