OSDN Git Service

* config/bfin/bfin.md (composev2hi): Put operands into vector
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / simd-6.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -std=gnu99" } */
3
4 /* Ensure that we don't need a typedef to initialize a vector type.  */
5 #define vector __attribute__ ((vector_size (8)))
6 vector char x = (vector char) {1,2,3,4,5,6,7,8}; /* { dg-bogus "initializer" } */
7 vector char y = (vector short) {1,2,3,4}; /* { dg-message "note: use -flax-vector-conversions to permit conversions between vectors with differing element types or numbers of subparts" } */
8   /* { dg-error "incompatible types in initialization" "" { target *-*-* } 7 } */