Commit 2377345d by Bin Cheng Committed by Bin Cheng

re PR testsuite/85190 (gcc.dg/vect/pr81196.c FAILs)

	gcc/testsuite
	PR testsuite/85190
	* gcc.dg/vect/pr81196.c: Adjust pointer for aligned access.

From-SVN: r259272
parent 56f1cb3f
2018-04-10 Bin Cheng <bin.cheng@arm.com>
PR testsuite/85190
* gcc.dg/vect/pr81196.c: Adjust pointer for aligned access.
2018-04-10 Jakub Jelinek <jakub@redhat.com>
PR target/85177
......
......@@ -4,14 +4,14 @@
void f(short*p){
p=(short*)__builtin_assume_aligned(p,64);
short*q=p+256;
short*q=p+255;
for(;p!=q;++p,--q){
short t=*p;*p=*q;*q=t;
}
}
void b(short*p){
p=(short*)__builtin_assume_aligned(p,64);
short*q=p+256;
short*q=p+255;
for(;p<q;++p,--q){
short t=*p;*p=*q;*q=t;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment