projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
91efae4
)
intel/compiler: add ASSERTED annotation to avoid "unused variable" warning
author
Eric Engestrom
<eric.engestrom@intel.com>
Fri, 13 Dec 2019 17:01:17 +0000
(17:01 +0000)
committer
Eric Engestrom
<eric@engestrom.ch>
Fri, 13 Dec 2019 20:16:20 +0000
(20:16 +0000)
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
src/intel/compiler/brw_eu.cpp
patch
|
blob
|
history
diff --git
a/src/intel/compiler/brw_eu.cpp
b/src/intel/compiler/brw_eu.cpp
index f347d9f52ab8b246ab7a99528ce70dfb74a555f9..e30bbc75f2dfc4d1654fd2d1f47c51114a27fd09 100644
(file)
--- 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;