[libclc] 154/291: relational: Fix signbit

Andreas Beckmann anbe at moszumanska.debian.org
Tue Sep 8 10:53:44 UTC 2015


This is an automated email from the git hooks/post-receive script.

anbe pushed a commit to branch master
in repository libclc.

commit cce042c05dc087558e764ad0051c77310ca617b6
Author: Aaron Watry <awatry at gmail.com>
Date:   Wed Jun 25 21:08:38 2014 +0000

    relational: Fix signbit
    
    The vector components were mistakenly using () instead of {}, which caused
    all but the last vector component to be dropped on the floor.
    
    Signed-off-by: Aaron Watry <awatry at gmail.com>
    Reviewed-by: Jeroen Ketema <j.ketema at imperial.ac.uk>
    
    git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@211733 91177308-0d34-0410-b5e6-96231b3b80d8
---
 generic/lib/relational/signbit.cl | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/generic/lib/relational/signbit.cl b/generic/lib/relational/signbit.cl
index 1f496d9..f429960 100644
--- a/generic/lib/relational/signbit.cl
+++ b/generic/lib/relational/signbit.cl
@@ -17,35 +17,35 @@ _CLC_DEF _CLC_OVERLOAD RET_TYPE FUNCTION(ARG_TYPE x) { \
 
 #define _CLC_DEFINE_RELATIONAL_UNARY_VEC3(RET_TYPE, FUNCTION, ARG_TYPE) \
 _CLC_DEF _CLC_OVERLOAD RET_TYPE FUNCTION(ARG_TYPE x) { \
-  return (RET_TYPE)((FUNCTION(x.s0), FUNCTION(x.s1), FUNCTION(x.s2)) != (RET_TYPE)0); \
+  return (RET_TYPE)( (RET_TYPE){FUNCTION(x.s0), FUNCTION(x.s1), FUNCTION(x.s2)} != (RET_TYPE)0); \
 } \
 
 #define _CLC_DEFINE_RELATIONAL_UNARY_VEC4(RET_TYPE, FUNCTION, ARG_TYPE) \
 _CLC_DEF _CLC_OVERLOAD RET_TYPE FUNCTION(ARG_TYPE x) { \
   return (RET_TYPE)( \
-	( \
+	(RET_TYPE){ \
 		FUNCTION(x.s0), FUNCTION(x.s1), FUNCTION(x.s2), FUNCTION(x.s3) \
-	) != (RET_TYPE)0); \
+	} != (RET_TYPE)0); \
 } \
 
 #define _CLC_DEFINE_RELATIONAL_UNARY_VEC8(RET_TYPE, FUNCTION, ARG_TYPE) \
 _CLC_DEF _CLC_OVERLOAD RET_TYPE FUNCTION(ARG_TYPE x) { \
   return (RET_TYPE)( \
-	( \
+	(RET_TYPE){ \
 		FUNCTION(x.s0), FUNCTION(x.s1), FUNCTION(x.s2), FUNCTION(x.s3), \
 		FUNCTION(x.s4), FUNCTION(x.s5), FUNCTION(x.s6), FUNCTION(x.s7) \
-	) != (RET_TYPE)0); \
+	} != (RET_TYPE)0); \
 } \
 
 #define _CLC_DEFINE_RELATIONAL_UNARY_VEC16(RET_TYPE, FUNCTION, ARG_TYPE) \
 _CLC_DEF _CLC_OVERLOAD RET_TYPE FUNCTION(ARG_TYPE x) { \
   return (RET_TYPE)( \
-	( \
+	(RET_TYPE){ \
 		FUNCTION(x.s0), FUNCTION(x.s1), FUNCTION(x.s2), FUNCTION(x.s3), \
 		FUNCTION(x.s4), FUNCTION(x.s5), FUNCTION(x.s6), FUNCTION(x.s7), \
 		FUNCTION(x.s8), FUNCTION(x.s9), FUNCTION(x.sa), FUNCTION(x.sb), \
 		FUNCTION(x.sc), FUNCTION(x.sd), FUNCTION(x.se), FUNCTION(x.sf) \
-	) != (RET_TYPE)0); \
+	} != (RET_TYPE)0); \
 } \
 
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opencl/libclc.git



More information about the Pkg-opencl-commits mailing list