From: Eric Engestrom Date: Fri, 13 Dec 2019 17:01:39 +0000 (+0000) Subject: intel/compiler: replace `0` pointer with `NULL` X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d600b19640691200df64c2f69d188bf38efd33cc;p=mesa.git intel/compiler: replace `0` pointer with `NULL` Signed-off-by: Eric Engestrom Reviewed-by: Caio Marcelo de Oliveira Filho --- diff --git a/src/intel/compiler/brw_eu.cpp b/src/intel/compiler/brw_eu.cpp index e30bbc75f2d..1261c726ace 100644 --- a/src/intel/compiler/brw_eu.cpp +++ b/src/intel/compiler/brw_eu.cpp @@ -399,7 +399,7 @@ bool brw_try_override_assembly(struct brw_codegen *p, int start_offset, ASSERTED bool valid = brw_validate_instructions(p->devinfo, p->store, start_offset, p->next_insn_offset, - 0); + NULL); assert(valid); return true;