]> granicus.if.org Git - clang/commitdiff
Replace a few // comments with /**/ comments in headers, for consistency.
authorNico Weber <nicolasweber@gmx.de>
Tue, 8 Jul 2014 18:29:27 +0000 (18:29 +0000)
committerNico Weber <nicolasweber@gmx.de>
Tue, 8 Jul 2014 18:29:27 +0000 (18:29 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@212556 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Headers/x86intrin.h
lib/Headers/xmmintrin.h

index be9e71d3a5000a2f0eba6d1d681f7599c3b945f5..21a43daf3c2d5045510d5e1b8f82ac85c2e940c0 100644 (file)
@@ -76,6 +76,6 @@
 #include <f16cintrin.h>
 #endif
 
-// FIXME: LWP
+/* FIXME: LWP */
 
 #endif /* __X86INTRIN_H */
index e777ec0171ea73e787e010d69f1bf5e2bc4a2602..c9befcb456f68303a688b64a5c7a78e82fe0a7de 100644 (file)
@@ -34,8 +34,8 @@ typedef int __v4si __attribute__((__vector_size__(16)));
 typedef float __v4sf __attribute__((__vector_size__(16)));
 typedef float __m128 __attribute__((__vector_size__(16)));
 
-// This header should only be included in a hosted environment as it depends on
-// a standard library to provide allocation routines.
+/* This header should only be included in a hosted environment as it depends on
+ * a standard library to provide allocation routines. */
 #if __STDC_HOSTED__
 #include <mm_malloc.h>
 #endif
@@ -589,7 +589,7 @@ _mm_set1_ps(float __w)
   return (__m128){ __w, __w, __w, __w };
 }
 
-// Microsoft specific.
+/* Microsoft specific. */
 static __inline__ __m128 __attribute__((__always_inline__, __nodebug__))
 _mm_set_ps1(float __w)
 {