diff --git a/src/intel/compiler/brw_nir.c b/src/intel/compiler/brw_nir.c index 0cd4e8dae88..142006532df 100644 --- a/src/intel/compiler/brw_nir.c +++ b/src/intel/compiler/brw_nir.c @@ -1435,7 +1435,7 @@ brw_preprocess_nir(const struct brw_compiler *compiler, nir_shader *nir, if (nir->info.stage == MESA_SHADER_GEOMETRY) OPT(nir_lower_gs_intrinsics, 0); - /* See also brw_nir_trig_workarounds.py */ + /* See also brw_nir_workarounds.py */ if (compiler->precise_trig && !(devinfo->ver >= 10 || devinfo->platform == INTEL_PLATFORM_KBL)) OPT(brw_nir_apply_trig_workarounds); diff --git a/src/intel/compiler/brw_nir_trig_workarounds.py b/src/intel/compiler/brw_nir_workarounds.py similarity index 100% rename from src/intel/compiler/brw_nir_trig_workarounds.py rename to src/intel/compiler/brw_nir_workarounds.py diff --git a/src/intel/compiler/meson.build b/src/intel/compiler/meson.build index e1fc2af924e..aae7dc30a42 100644 --- a/src/intel/compiler/meson.build +++ b/src/intel/compiler/meson.build @@ -141,9 +141,9 @@ brw_nir_lower_fsign = custom_target( ) brw_nir_trig = custom_target( - 'brw_nir_trig_workarounds.c', - input : 'brw_nir_trig_workarounds.py', - output : 'brw_nir_trig_workarounds.c', + 'brw_nir_workarounds.c', + input : 'brw_nir_workarounds.py', + output : 'brw_nir_workarounds.c', command : [ prog_python, '@INPUT@', '-p', dir_compiler_nir, ],