diff options
author | Dave Airlie <[email protected]> | 2020-04-06 17:04:57 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2020-04-15 14:26:06 +1000 |
commit | c494ed0467573b992252fab3217ec158d5b7ccb3 (patch) | |
tree | 239178898c9362949c0a97ef8ffcfcfbb1a26137 | |
parent | 7690606bf784c35c5318ebfe0f5162eec9b19b82 (diff) |
gallivm: fix left over shader vote debug
Reviewed-by: Roland Scheidegger <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4560>
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c index fb8f4d9b7b6..c54df7e98a3 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c @@ -1603,7 +1603,6 @@ static void emit_vote(struct lp_build_nir_context *bld_base, LLVMValueRef src, n lp_build_endif(&ifthen); lp_build_loop_end_cond(&loop_state, lp_build_const_int32(gallivm, bld_base->uint_bld.type.length), NULL, LLVMIntUGE); - lp_build_print_value(gallivm, "init_val is ", LLVMBuildLoad(builder, res_store, "")); init_val = LLVMBuildLoad(builder, res_store, ""); } else { LLVMBuildStore(builder, lp_build_const_int32(gallivm, instr->intrinsic == nir_intrinsic_vote_any ? 0 : -1), res_store); |