From ac69aa137e360340fe9f148f019d93af6c3d8336 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Mon, 3 Jul 2017 17:39:37 +0100 Subject: COMPMID-418 Add check and fix comments after preprocessor conditions Change-Id: I1353fd652ee180e3931e58b4ce13d651a48c7e2c Reviewed-on: http://mpd-gerrit.cambridge.arm.com/79567 Tested-by: Kaizen Reviewed-by: Moritz Pflanzer --- src/core/CL/cl_kernels/pixelwise_mul_int.cl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/CL/cl_kernels/pixelwise_mul_int.cl') diff --git a/src/core/CL/cl_kernels/pixelwise_mul_int.cl b/src/core/CL/cl_kernels/pixelwise_mul_int.cl index 05c437cd17..e6dfd3043d 100644 --- a/src/core/CL/cl_kernels/pixelwise_mul_int.cl +++ b/src/core/CL/cl_kernels/pixelwise_mul_int.cl @@ -25,9 +25,9 @@ #ifdef SATURATE #define CONVERT_OP_INT_STR(x, type) (convert_##type##_sat(x)) -#else +#else /* SATURATE */ #define CONVERT_OP_INT_STR(x, type) (convert_##type(x)) -#endif +#endif /* SATURATE */ #define CONVERT_OP_INT(x, type) CONVERT_OP_INT_STR(x, type) /** Performs a pixelwise multiplication with integer scale of integer inputs. -- cgit v1.2.1