diff options
Diffstat (limited to 'pocl/generate-files.py')
-rwxr-xr-x | pocl/generate-files.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pocl/generate-files.py b/pocl/generate-files.py index 9506bf9..5bf1d87 100755 --- a/pocl/generate-files.py +++ b/pocl/generate-files.py @@ -315,7 +315,7 @@ def output_vmlfunc_vml(func, vectype): out("%s %s(%s)" % (funcretstr, prefixed(name), funcargstr)) out("{") for (n, arg, vmlarg) in zip(range(0, 100), args, vmlargs): - out(" %s y%d = bitcast<%s,%s>(x%d);" % + out(" %s y%d = bitcast<%s,%s >(x%d);" % (mkvmltype(vmlarg, vmltype), n, mktype(arg, vectype), mkvmltype(vmlarg, vmltype), n)) callargstr = ", ".join(map(lambda (n, arg): "y%d" % n, |