From: Eric Engestrom Date: Fri, 13 Dec 2019 17:01:17 +0000 (+0000) Subject: intel/compiler: add ASSERTED annotation to avoid "unused variable" warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8074f68b3b02a0a60a276e88c5da36f42331bc28;p=mesa.git intel/compiler: add ASSERTED annotation to avoid "unused variable" warning 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 f347d9f52ab..e30bbc75f2d 100644 --- a/src/intel/compiler/brw_eu.cpp +++ b/src/intel/compiler/brw_eu.cpp @@ -396,9 +396,10 @@ bool brw_try_override_assembly(struct brw_codegen *p, int start_offset, read(fd, p->store + start_offset, sb.st_size); close(fd); - bool valid = brw_validate_instructions(p->devinfo, p->store, - start_offset, p->next_insn_offset, - 0); + ASSERTED bool valid = + brw_validate_instructions(p->devinfo, p->store, + start_offset, p->next_insn_offset, + 0); assert(valid); return true;