summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRhys Perry <pendingchaos02@gmail.com>2021-11-11 16:07:20 +0000
committerMarge Bot <emma+marge@anholt.net>2022-04-13 23:08:07 +0000
commitdc835626b36efc45b6ff9e9e8c4c6f15d726b155 (patch)
tree108ce3efc528af411182d51c4525f74fe98e770c
parent8ff122f8b89648301b19e5d3eca528c6eb954369 (diff)
downloadmesa-dc835626b36efc45b6ff9e9e8c4c6f15d726b155.tar.gz
nir/opt_load_store_vectorize: fix broken indentation
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Timur Kristóf <timur.kristof@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13778>
-rw-r--r--src/compiler/nir/nir_opt_load_store_vectorize.c42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/compiler/nir/nir_opt_load_store_vectorize.c b/src/compiler/nir/nir_opt_load_store_vectorize.c
index cd5dbfbe40a..b2e0e5bebba 100644
--- a/src/compiler/nir/nir_opt_load_store_vectorize.c
+++ b/src/compiler/nir/nir_opt_load_store_vectorize.c
@@ -1191,36 +1191,36 @@ static bool
vectorize_sorted_entries(struct vectorize_ctx *ctx, nir_function_impl *impl,
struct util_dynarray *arr)
{
- unsigned num_entries = util_dynarray_num_elements(arr, struct entry *);
+ unsigned num_entries = util_dynarray_num_elements(arr, struct entry *);
bool progress = false;
- for (unsigned first_idx = 0; first_idx < num_entries; first_idx++) {
- struct entry *low = *util_dynarray_element(arr, struct entry *, first_idx);
- if (!low)
- continue;
+ for (unsigned first_idx = 0; first_idx < num_entries; first_idx++) {
+ struct entry *low = *util_dynarray_element(arr, struct entry *, first_idx);
+ if (!low)
+ continue;
- for (unsigned second_idx = first_idx + 1; second_idx < num_entries; second_idx++) {
- struct entry *high = *util_dynarray_element(arr, struct entry *, second_idx);
- if (!high)
- continue;
+ for (unsigned second_idx = first_idx + 1; second_idx < num_entries; second_idx++) {
+ struct entry *high = *util_dynarray_element(arr, struct entry *, second_idx);
+ if (!high)
+ continue;
- uint64_t diff = high->offset_signed - low->offset_signed;
- if (diff > get_bit_size(low) / 8u * low->intrin->num_components)
- break;
+ uint64_t diff = high->offset_signed - low->offset_signed;
+ if (diff > get_bit_size(low) / 8u * low->intrin->num_components)
+ break;
- struct entry *first = low->index < high->index ? low : high;
- struct entry *second = low->index < high->index ? high : low;
+ struct entry *first = low->index < high->index ? low : high;
+ struct entry *second = low->index < high->index ? high : low;
- if (try_vectorize(impl, ctx, low, high, first, second)) {
- low = low->is_store ? second : first;
- *util_dynarray_element(arr, struct entry *, second_idx) = NULL;
- progress = true;
- }
+ if (try_vectorize(impl, ctx, low, high, first, second)) {
+ low = low->is_store ? second : first;
+ *util_dynarray_element(arr, struct entry *, second_idx) = NULL;
+ progress = true;
}
-
- *util_dynarray_element(arr, struct entry *, first_idx) = low;
}
+ *util_dynarray_element(arr, struct entry *, first_idx) = low;
+ }
+
return progress;
}