diff options
author | Iago Toral Quiroga <[email protected]> | 2018-04-27 09:28:48 +0200 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2018-05-03 11:40:26 +0200 |
commit | 2d648e5ba38d8924c8dcd99d18ab2480d7903c0e (patch) | |
tree | 8bbbaab9632b354c6401e4c12c51a499d3ac4378 /src/intel/compiler/brw_nir.c | |
parent | d2564af84252810e8400bae53742ba66539aa3c8 (diff) |
compiler/lower_64bit_packing: rename the pass to be more generic
It can do 32-bit packing too now.
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_nir.c')
-rw-r--r-- | src/intel/compiler/brw_nir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_nir.c b/src/intel/compiler/brw_nir.c index 97d28db88e1..dfeea73b06a 100644 --- a/src/intel/compiler/brw_nir.c +++ b/src/intel/compiler/brw_nir.c @@ -586,7 +586,7 @@ brw_nir_optimize(nir_shader *nir, const struct brw_compiler *compiler, nir_lower_dfract | nir_lower_dround_even | nir_lower_dmod); - OPT(nir_lower_64bit_pack); + OPT(nir_lower_pack); } while (progress); return nir; |