Add documentation for musttail attribute
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / pr106016.c
blob3db8345dcc68ecad7da24a8d73fde0f102cf7074
1 /* PR target/106016 */
2 /* { dg-require-effective-target power10_ok } */
3 /* { dg-options "-O2 -mdejagnu-cpu=power10" } */
5 /* Make sure we do not ICE on the following test case. */
7 extern void bar (__vector_quad *);
9 void
10 foo (__vector_quad *a, __vector_quad *b)
12 __vector_quad arr[2] = {*a, *b};
13 bar (&arr[0]);