diff options
author | Samuel Iglesias Gonsálvez <[email protected]> | 2017-03-14 08:17:36 +0100 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2017-04-14 14:56:07 -0700 |
commit | af6fc3a8ea27368ba70338437e27e3c2b522b27b (patch) | |
tree | edfab3684ffc823d4139cb87be1d7d8ada4fa8f7 /src/intel/compiler/brw_fs.cpp | |
parent | dee31311eb024a636466e359b43d3a67b0135f32 (diff) |
i965/fs: rename lower_d2x to lower_conversions
v2:
- Change the name to lower_conversions.
Signed-off-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_fs.cpp')
-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 8eb8789905c..f96e0a39899 100644 --- a/src/intel/compiler/brw_fs.cpp +++ b/src/intel/compiler/brw_fs.cpp @@ -5740,7 +5740,7 @@ fs_visitor::optimize() OPT(dead_code_eliminate); } - if (OPT(lower_d2x)) { + if (OPT(lower_conversions)) { OPT(opt_copy_propagation); OPT(dead_code_eliminate); OPT(lower_simd_width); |