1 /* PR target/106017 */
2 /* { dg-options "-O1 -mdejagnu-cpu=power10" } */
3 /* { dg-require-effective-target power10_ok } */
4
5 /* Make sure we do not flag any errors on the following test cases. */
6
7 void takeacc(__vector_quad *);
8 void
9 foo (void)
10 {
11 __vector_quad arr[4];
12 takeacc (arr);
13 }
14
15 unsigned char *
16 bar (__vector_quad *a)
17 {
18 return (unsigned char *)a;
19 }