PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / g++.dg / ext / altivec-1.C
blobcd7c3aad2611d299bcfe8d19f01c656c4aff3459
1 /* { dg-do compile { target powerpc*-*-* } } */
2 /* { dg-require-effective-target powerpc_altivec_ok } */
3 /* { dg-options "-maltivec" } */
5 #include <altivec.h>
6  
7 int main()
9   return 0;
12 class F32vec4 {
13 public:
14   vector float val;
15   vector float operator++(void) { return val;}