swr/rast: blend_epi32() should return Integer, not Float
authorGeorge Kyriazis <george.kyriazis@intel.com>
Tue, 13 Feb 2018 16:41:48 +0000 (10:41 -0600)
committerGeorge Kyriazis <george.kyriazis@intel.com>
Fri, 16 Feb 2018 16:54:02 +0000 (10:54 -0600)
fix gcc8 compiler error for KNL.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105029
Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512.inl

index 8de62f2a7e451c0a1266de270290966705c0d78d..f3a58f9e1cbd1e201994a664fe19dbe864b660df 100644 (file)
@@ -366,7 +366,7 @@ static SIMDINLINE Float blend_ps(Float a, Float b) // return ImmT ? b : a  (floa
 }
 
 template <int ImmT>
-static SIMDINLINE Float blend_epi32(Integer a, Integer b) // return ImmT ? b : a  (int32)
+static SIMDINLINE Integer blend_epi32(Integer a, Integer b) // return ImmT ? b : a  (int32)
 {
     return _mm512_mask_blend_epi32(__mmask16(ImmT), a, b);
 }