From c5fbcab803399e4c77af3d45562b0b37fa82d80c Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 29 Nov 2022 12:50:33 -0600 Subject: [PATCH] nir/builder: Fix indentation of nir_type_convert MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Alyssa Rosenzweig Reviewed-by: Emma Anholt Reviewed-by: Timur Kristóf Part-of: --- src/compiler/nir/nir_builder.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compiler/nir/nir_builder.c b/src/compiler/nir/nir_builder.c index ca10a294f79..44dbbbd55fd 100644 --- a/src/compiler/nir/nir_builder.c +++ b/src/compiler/nir/nir_builder.c @@ -434,9 +434,9 @@ nir_compare_func(nir_builder *b, enum compare_func func, nir_ssa_def * nir_type_convert(nir_builder *b, - nir_ssa_def *src, - nir_alu_type src_type, - nir_alu_type dest_type) + nir_ssa_def *src, + nir_alu_type src_type, + nir_alu_type dest_type) { assert(nir_alu_type_get_type_size(src_type) == 0 || nir_alu_type_get_type_size(src_type) == src->bit_size);