i965/fs: Delete dead code to fail compiles with SIMD16 pull parameters.
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 11 Mar 2014 06:22:48 +0000 (23:22 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 18 Mar 2014 17:11:08 +0000 (10:11 -0700)
commitde77efde91401919fe7282a4b07300a10185792b
treef5566de521f1a286282f31da14c5efce91ec6980
parent63e7b519120c5ce611b6e77e0d1d93e10ed41a05
i965/fs: Delete dead code to fail compiles with SIMD16 pull parameters.

The SIMD8 compile will determine whether pull parameters are necessary.
If so, it will set prog_data->nr_pull_params to a value greater than 0.

brw_wm_fs_emit checks if nr_pull_params > 0 and skips the SIMD16 compile
altogether.  So, this code should never occur.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/brw_fs.cpp