diff options
-rw-r--r-- | src/intel/compiler/brw_fs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp index bab816227c0..e10c6705858 100644 --- a/src/intel/compiler/brw_fs.cpp +++ b/src/intel/compiler/brw_fs.cpp @@ -9054,7 +9054,7 @@ brw_compile_cs(const struct brw_compiler *compiler, void *log_data, * * TODO: Use performance_analysis and drop this boolean. */ - const bool needs_32 = min_dispatch_width > 16 || + const bool needs_32 = v == NULL || (INTEL_DEBUG & DEBUG_DO32) || generate_all; |