]> granicus.if.org Git - clang/commitdiff
Use __ before argument names in provided headers.
authorEric Christopher <echristo@gmail.com>
Fri, 12 Feb 2016 00:32:23 +0000 (00:32 +0000)
committerEric Christopher <echristo@gmail.com>
Fri, 12 Feb 2016 00:32:23 +0000 (00:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@260631 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Headers/f16cintrin.h

index bee036f3db91306b855079cbe9c4329ee1baef91..db4185210f3b734b51d45e597623f8f018f4d30c 100644 (file)
@@ -43,9 +43,9 @@
 ///    A 16-bit half-precision float value.
 /// \returns The converted 32-bit float value.
 static __inline float __DEFAULT_FN_ATTRS
-_cvtsh_ss(unsigned short a)
+_cvtsh_ss(unsigned short __a)
 {
-  __v8hi v = {(short)a, 0, 0, 0, 0, 0, 0, 0};
+  __v8hi v = {(short)__a, 0, 0, 0, 0, 0, 0, 0};
   __v4sf r = __builtin_ia32_vcvtph2ps(v);
   return r[0];
 }
@@ -114,9 +114,9 @@ _cvtsh_ss(unsigned short a)
 ///    64 bits are used in the conversion.
 /// \returns A 128-bit vector of [4 x float] containing converted float values.
 static __inline __m128 __DEFAULT_FN_ATTRS
-_mm_cvtph_ps(__m128i a)
+_mm_cvtph_ps(__m128i __a)
 {
-  return (__m128)__builtin_ia32_vcvtph2ps((__v8hi)a);
+  return (__m128)__builtin_ia32_vcvtph2ps((__v8hi)__a);
 }
 
 #undef __DEFAULT_FN_ATTRS