mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
aco: exclude novalidateir from codegen flags
this otherwise bricks caching cc: mesa-stable Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33239>
This commit is contained in:
parent
a4afb81729
commit
4e1b18178b
1 changed files with 2 additions and 1 deletions
|
|
@ -446,7 +446,8 @@ aco_get_codegen_flags()
|
|||
init();
|
||||
/* Exclude flags which don't affect code generation. */
|
||||
uint64_t exclude =
|
||||
DEBUG_VALIDATE_IR | DEBUG_VALIDATE_RA | DEBUG_PERF_INFO | DEBUG_LIVE_INFO;
|
||||
DEBUG_VALIDATE_IR | DEBUG_VALIDATE_RA | DEBUG_PERF_INFO | DEBUG_LIVE_INFO |
|
||||
DEBUG_NO_VALIDATE_IR | DEBUG_VALIDATE_LIVE_VARS;
|
||||
return debug_flags & ~exclude;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue