Skip to content
Snippets Groups Projects
Commit 2c1c3355 authored by Bill Wendling's avatar Bill Wendling
Browse files

Remove comment that snuck in there.

llvm-svn: 129434
parent 88ae4377
No related branches found
No related tags found
No related merge requests found
......@@ -539,7 +539,7 @@ _mm_load_ps(const float *p)
static __inline__ __m128 __attribute__((__always_inline__, __nodebug__))
_mm_loadu_ps(const float *p)
{
return (__m128){ p[0], p[1], p[2], p[3] }; /* __builtin_ia32_loadups(p); */
return (__m128){ p[0], p[1], p[2], p[3] };
}
static __inline__ __m128 __attribute__((__always_inline__, __nodebug__))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment