From b6273291b5646887c8488f71b2119709e15e7d0e Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Tue, 31 Mar 2020 12:40:36 -0500 Subject: [PATCH] nir/load_store_vectorize: Use nir_iadd_imm for offsets This makes it capable of handling 64-bit offsets Reviewed-by: Rhys Perry Part-of: --- src/compiler/nir/nir_opt_load_store_vectorize.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/nir/nir_opt_load_store_vectorize.c b/src/compiler/nir/nir_opt_load_store_vectorize.c index b0d3a7d..fded9f5 100644 --- a/src/compiler/nir/nir_opt_load_store_vectorize.c +++ b/src/compiler/nir/nir_opt_load_store_vectorize.c @@ -793,7 +793,7 @@ vectorize_loads(nir_builder *b, struct vectorize_ctx *ctx, b->cursor = nir_before_instr(first->instr); nir_ssa_def *new_base = first->intrin->src[info->base_src].ssa; - new_base = nir_iadd(b, new_base, nir_imm_int(b, -(high_start / 8u))); + new_base = nir_iadd_imm(b, new_base, -(int)(high_start / 8u)); nir_instr_rewrite_src(first->instr, &first->intrin->src[info->base_src], nir_src_for_ssa(new_base)); -- 2.7.4