mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 05:10:33 +08:00
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:
parent
73ca9fb5df
commit
c057b53a37
@ -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.
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user