diff options
author | Timothy Arceri <[email protected]> | 2018-02-09 17:15:54 +1100 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-02-10 10:46:28 +1100 |
commit | 1b1e5f8edfb16b8c8d5170bdd110f730352b6137 (patch) | |
tree | 11736c77b2b334334aed108a679f6563e43c388f | |
parent | 9a05c66feb0c3c7877999827ce70765c656338f1 (diff) |
ac: fix some 64bit unpack asserts
Previously the asserts did not take swizzles into account.
Reviewed-by: Samuel Pitoiset <[email protected]>
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index 3691555208b..396627bf1b7 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -2042,7 +2042,7 @@ static void visit_alu(struct ac_nir_context *ctx, const nir_alu_instr *instr) break; case nir_op_unpack_64_2x32_split_x: { - assert(instr->src[0].src.ssa->num_components == 1); + assert(ac_get_llvm_num_components(src[0]) == 1); LLVMValueRef tmp = LLVMBuildBitCast(ctx->ac.builder, src[0], ctx->ac.v2i32, ""); @@ -2052,7 +2052,7 @@ static void visit_alu(struct ac_nir_context *ctx, const nir_alu_instr *instr) } case nir_op_unpack_64_2x32_split_y: { - assert(instr->src[0].src.ssa->num_components == 1); + assert(ac_get_llvm_num_components(src[0]) == 1); LLVMValueRef tmp = LLVMBuildBitCast(ctx->ac.builder, src[0], ctx->ac.v2i32, ""); |