Fix the indention handling in vector builtin function generator.
authorZhigang Gong <zhigang.gong@linux.intel.com>
Wed, 24 Jul 2013 10:06:06 +0000 (18:06 +0800)
committerZhigang Gong <zhigang.gong@linux.intel.com>
Wed, 24 Jul 2013 10:16:37 +0000 (18:16 +0800)
As OpenCL use .sa rather than .s10 to represent the tenth element
of a vector. We don't need to adjust one space when we cross the
tenth element (.sa) boundary.

Signed-off-by: Zhigang Gong <zhigang.gong@linux.intel.com>
backend/src/gen_builtin_vector.py

index c1a76f3..f5b0f3c 100755 (executable)
@@ -256,8 +256,6 @@ class builtinProto():
                 formatStr += ','
                 if (j + 1) % 2 == 0:
                     formatStr += ' '
-                    if vtype[1] > 10 and j < 10:
-                        formatStr += ' '
                 if j % 2 == 0:
                     formatStr = self.append(formatStr, self.indentSpace())
 
@@ -265,8 +263,6 @@ class builtinProto():
             for n in range(0, self.paramCount):
                 if n != 0:
                     formatStr += ', '
-                    if vtype[1] > 10 and j < 10:
-                        formatStr += ' '
 
                 ptype = fixup_type(ptypeSeqs[n], vtypeSeq, i)
                 vtype = fixup_type(vtypeSeq, ptypeSeqs[n], i)