2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr70251.C
blob5af35b2d8cf6fd86691f4d66aa1bfe3a6c7ca5eb
1 // { dg-do compile }
2 // { dg-additional-options "-w -Wno-psabi" }
4 typedef int vec __attribute__((vector_size(64)));
5 vec f(vec x,vec y,vec z)
7   vec zero={};
8   vec one=zero+1;
9   vec c=x<y;
10   return z+(c?one:zero);