diff mbox series

[rs6000] update vec_perm testcase

Message ID 1509119914.26707.234.camel@brimstone.rchland.ibm.com
State New
Headers show
Series [rs6000] update vec_perm testcase | expand

Commit Message

will schmidt Oct. 27, 2017, 3:58 p.m. UTC
Hi,

Update the vec-perm testcase to use 'long long' rather than 'long'.  This was a missed typo
from when i initially committed the test.
    
Credit given to Carl for noticing this one.
    
OK for trunk?
    
Thanks,
-Will

Comments

Segher Boessenkool Oct. 30, 2017, 10:07 a.m. UTC | #1
Hi!

On Fri, Oct 27, 2017 at 10:58:34AM -0500, Will Schmidt wrote:
> Update the vec-perm testcase to use 'long long' rather than 'long'.  This was a missed typo
> from when i initially committed the test.
>     
> Credit given to Carl for noticing this one.
>     
> OK for trunk?

Yes please (with some suitable changelog).  Thanks to you both,


Segher
diff mbox series

Patch

diff --git a/gcc/testsuite/gcc.target/powerpc/fold-vec-perm-longlong.c b/gcc/testsuite/gcc.target/powerpc/fold-vec-perm-longlong.c
index 7f3e574..1333d88 100644
--- a/gcc/testsuite/gcc.target/powerpc/fold-vec-perm-longlong.c
+++ b/gcc/testsuite/gcc.target/powerpc/fold-vec-perm-longlong.c
@@ -14,11 +14,11 @@  testbl (vector bool long long vbl2, vector bool long long vbl3,
 {
   return vec_perm (vbl2, vbl3, vuc);
 }
 
 vector signed long long
-testsl (vector signed long vsl2, vector signed long vsl3,
+testsl (vector signed long long vsl2, vector signed long long vsl3,
 	vector unsigned char vuc)
 {
   return vec_perm (vsl2, vsl3, vuc);
 }