[RS6000] Tests that use int128_t and -m32
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / pr97360.c
blob2328d28a283afb719cdb17ffcab662a5b13d6f24
1 /* PR target/97360 */
2 /* { dg-do compile } */
3 /* { dg-require-effective-target power10_ok } */
4 /* { dg-options "-O2 -mdejagnu-cpu=power10" } */
6 /* Verify we do not ICE on the test below. */
8 typedef unsigned char vec_t __attribute__((vector_size(16)));
10 void
11 foo (__vector_quad *dst, __vector_pair *vpair, vec_t *vec)
13 __vector_quad acc = *dst;
14 for (;;)
16 __builtin_mma_xvf64gerpp(&acc, *vpair, vec[7]);