(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
powerpc/
pr70010-3.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2 -maltivec -mno-vsx" } */
       3  /* { dg-require-effective-target powerpc_altivec_ok } */
       4  
       5  vector int c, a, b;
       6  
       7  static inline void __attribute__ ((__always_inline__, target ("no-vsx")))
       8  foo ()
       9  {
      10    c = a + b;
      11  }
      12  
      13  int
      14  main ()
      15  {
      16    foo ();
      17    c = a + b;
      18  }