1 /* { dg-do compile } */
2 /* { dg-options "-O" } */
3
4 typedef int vec __attribute__ ((vector_size (4*sizeof(int))));
5 void f (vec *x){
6 *x = (*x < 0) | 1;
7 }
1 /* { dg-do compile } */
2 /* { dg-options "-O" } */
3
4 typedef int vec __attribute__ ((vector_size (4*sizeof(int))));
5 void f (vec *x){
6 *x = (*x < 0) | 1;
7 }