1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #7605 from tomoaki0705:fixBuildFp16Error

This commit is contained in:
Alexander Alekhin
2016-11-03 07:41:42 +00:00
@@ -301,7 +301,7 @@ struct v_float16x4
}
short get0() const
{
return vget_lane_s16(vreinterpret_f16_s16(val), 0);
return vget_lane_s16(vreinterpret_s16_f16(val), 0);
}
float16x4_t val;
};