[PATCH] D25956: Implement vector_insert_exp builtins - clang portion

Eugene Zelenko via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 25 18:20:53 PDT 2016


Eugene.Zelenko added inline comments.


================
Comment at: lib/Headers/altivec.h:2502
+static __inline__ vector double  __ATTRS_o_ai
+vec_insert_exp (vector double __a, vector unsigned long long __b) {
+  return __builtin_vsx_xviexpdp((vector unsigned long long)__a,__b);
----------------
Please remove space between function name and open bracket. Same below.


https://reviews.llvm.org/D25956





More information about the llvm-commits mailing list