diff options
author | Dave Airlie <[email protected]> | 2016-10-20 01:42:22 +0100 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-10-20 01:43:55 +0100 |
commit | d842546ad1ebdb4825f0cbca2d68a56139d88e2a (patch) | |
tree | aa3172779c47096c0827a5c75648e7c1e06066b8 /src/amd | |
parent | 64c3d735354932c3b14397e9c292f5989a9da710 (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]>
Diffstat (limited to 'src/amd')
-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; } |