diff options
author | Dave Airlie <[email protected]> | 2016-10-20 01:42:22 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-10-24 08:51:57 +0100 |
commit | 554a99ebdecd6e2fb88e2aa05308e06372886c36 (patch) | |
tree | 324701c6ec6660ff6c0ed9153c9776477febe777 /src | |
parent | e45c4586c275b6d47e1c51cb568db644c7c55f61 (diff) |
radv: use emit_icmp for samples_identical
On a debug llvm build we'd assert on the next compare
when the return from samples_identical was i1 instead
of i32.
Cc: "13.0" <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
(cherry picked from commit d842546ad1ebdb4825f0cbca2d68a56139d88e2a)
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index e2f6bcaaa4e..08dac80eb6f 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -3412,7 +3412,7 @@ static void visit_tex(struct nir_to_llvm_context *ctx, nir_tex_instr *instr) result = build_tex_intrinsic(ctx, instr, &txf_info); result = LLVMBuildExtractElement(ctx->builder, result, ctx->i32zero, ""); - result = LLVMBuildICmp(ctx->builder, LLVMIntEQ, result, ctx->i32zero, ""); + result = emit_int_cmp(ctx, LLVMIntEQ, result, ctx->i32zero); goto write_result; } |