mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
intel: Fix release build breakage
We missed changing one instance of debug_flag to debug_enabled in a
release-only ifdef branch.
Fixes: 758eb18c6f ("intel/compiler: Make vec4 generator take debug_enabled as a parameter")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9839>
This commit is contained in:
parent
243724031b
commit
5ae276f7e0
1 changed files with 1 additions and 1 deletions
|
|
@ -2169,7 +2169,7 @@ generate_code(struct brw_codegen *p,
|
|||
#ifndef NDEBUG
|
||||
bool validated =
|
||||
#else
|
||||
if (unlikely(debug_flag))
|
||||
if (unlikely(debug_enabled))
|
||||
#endif
|
||||
brw_validate_instructions(devinfo, p->store,
|
||||
0, p->next_insn_offset,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue