From: Nico Weber Date: Tue, 8 Jul 2014 18:29:27 +0000 (+0000) Subject: Replace a few // comments with /**/ comments in headers, for consistency. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1287091373e524414a4b47919eb862500ef8f6f3;p=platform%2Fupstream%2Fllvm.git Replace a few // comments with /**/ comments in headers, for consistency. llvm-svn: 212556 --- diff --git a/clang/lib/Headers/x86intrin.h b/clang/lib/Headers/x86intrin.h index be9e71d..21a43da 100644 --- a/clang/lib/Headers/x86intrin.h +++ b/clang/lib/Headers/x86intrin.h @@ -76,6 +76,6 @@ #include #endif -// FIXME: LWP +/* FIXME: LWP */ #endif /* __X86INTRIN_H */ diff --git a/clang/lib/Headers/xmmintrin.h b/clang/lib/Headers/xmmintrin.h index e777ec0..c9befcb 100644 --- a/clang/lib/Headers/xmmintrin.h +++ b/clang/lib/Headers/xmmintrin.h @@ -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 #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) {