[testsuite] require sqrt_insn effective target where needed
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / pr70010-3.c
blob9fd97d10074a67ffa81c7d97d43f1588c250e684
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -maltivec -mno-vsx" } */
3 /* { dg-require-effective-target powerpc_altivec_ok } */
5 vector int c, a, b;
7 static inline void __attribute__ ((__always_inline__, target ("no-vsx")))
8 foo ()
10 c = a + b;
13 int
14 main ()
16 foo ();
17 c = a + b;