[PATCH] rs6000: Fix typo in mmintrin.h

2019-03-21 Thread Bill Schmidt
Hi, It was recently pointed out that there's a pasto in mmintrin.h for the _mm_sub_pi32 function, so that it performs an addition rather than a subtraction. This won't do. This patch corrects the problem, and adds a test case to verify it. Installed and tested on powerpc64le-unknown-linux-gnu wi

Re: [PATCH] rs6000: Fix typo in mmintrin.h

2019-03-21 Thread Segher Boessenkool
On Thu, Mar 21, 2019 at 04:15:09PM -0500, Bill Schmidt wrote: > It was recently pointed out that there's a pasto in mmintrin.h for the > _mm_sub_pi32 function, so that it performs an addition rather than a > subtraction. This won't do. > > This patch corrects the problem, and adds a test case to