aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/pr102347.c
blob: 05c439a8dac172d3cf6dd25ec0033f7465f14780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do link } */
/* { dg-require-effective-target power10_ok } */
/* { dg-require-effective-target lto } */
/* { dg-options "-flto -mdejagnu-cpu=power9" } */

/* Verify there are no error messages in LTO mode.  */

#pragma GCC target "cpu=power10"
int main ()
{
  float *b;
  __vector_quad c;
  __builtin_mma_disassemble_acc (b, &c);
  return 0;
}