mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 03:39:01 +08:00
remove now-useless comments
This commit is contained in:
parent
0612768c1c
commit
9be2712bf7
@ -260,7 +260,6 @@ template<> EIGEN_STRONG_INLINE Packet4f ploadu<Packet4f>(const float* from)
|
|||||||
{
|
{
|
||||||
EIGEN_DEBUG_UNALIGNED_LOAD
|
EIGEN_DEBUG_UNALIGNED_LOAD
|
||||||
#if EIGEN_AVOID_CUSTOM_UNALIGNED_LOADS
|
#if EIGEN_AVOID_CUSTOM_UNALIGNED_LOADS
|
||||||
// bug 195: gcc/i386 emits weird x87 fldl/fstpl instructions for _mm_load_sd
|
|
||||||
return _mm_loadu_ps(from);
|
return _mm_loadu_ps(from);
|
||||||
#else
|
#else
|
||||||
__m128d res;
|
__m128d res;
|
||||||
@ -273,7 +272,6 @@ template<> EIGEN_STRONG_INLINE Packet2d ploadu<Packet2d>(const double* from)
|
|||||||
{
|
{
|
||||||
EIGEN_DEBUG_UNALIGNED_LOAD
|
EIGEN_DEBUG_UNALIGNED_LOAD
|
||||||
#if EIGEN_AVOID_CUSTOM_UNALIGNED_LOADS
|
#if EIGEN_AVOID_CUSTOM_UNALIGNED_LOADS
|
||||||
// bug 195: gcc/i386 emits weird x87 fldl/fstpl instructions for _mm_load_sd
|
|
||||||
return _mm_loadu_pd(from);
|
return _mm_loadu_pd(from);
|
||||||
#else
|
#else
|
||||||
__m128d res;
|
__m128d res;
|
||||||
@ -286,7 +284,6 @@ template<> EIGEN_STRONG_INLINE Packet4i ploadu<Packet4i>(const int* from)
|
|||||||
{
|
{
|
||||||
EIGEN_DEBUG_UNALIGNED_LOAD
|
EIGEN_DEBUG_UNALIGNED_LOAD
|
||||||
#if EIGEN_AVOID_CUSTOM_UNALIGNED_LOADS
|
#if EIGEN_AVOID_CUSTOM_UNALIGNED_LOADS
|
||||||
// bug 195: gcc/i386 emits weird x87 fldl/fstpl instructions for _mm_load_sd
|
|
||||||
return _mm_loadu_si128(reinterpret_cast<const Packet4i*>(from));
|
return _mm_loadu_si128(reinterpret_cast<const Packet4i*>(from));
|
||||||
#else
|
#else
|
||||||
__m128d res;
|
__m128d res;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user