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:
Mike Blumenkrantz 2025-01-24 13:15:06 -05:00 committed by Marge Bot
parent a4afb81729
commit 4e1b18178b

View file

@ -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;
}