rs6000: Fix one more vec_splat case

This fixes the one remaining case where the stricter vec_splat checking
complains in the testsuite.


	* g++.dg/ext/altivec-6.C: Change the vec_splat second argument to a
	valid value, in the "vector bool int" case.

From-SVN: r264681
This commit is contained in:
Segher Boessenkool 2018-09-28 00:56:37 +02:00 committed by Segher Boessenkool
parent 73ca9fb5df
commit c057b53a37
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2018-09-27 Segher Boessenkool <segher@kernel.crashing.org>
* g++.dg/ext/altivec-6.C: Change the vec_splat second argument to a
valid value, in the "vector bool int" case.
2018-09-27 Uros Bizjak <ubizjak@gmail.com>
* gcc.dg/rtl/x86_64/dfinit.c: Update scan-rtl-dump string.

View File

@ -26,5 +26,5 @@ void foo(void) {
elements in the referenced vector. */
vbs = vec_splat(vbs, 4);
vp = vec_splat(vp, 1);
vbi = vec_splat(vbi, 15);
vbi = vec_splat(vbi, 3);
}