Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / pr68714.c
blob8cd7c14c2889ca9fed61317ea5929497a015f1ff
1 /* PR tree-optimization/68714 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fdump-tree-reassoc1 -w -Wno-psabi" } */
5 typedef int vec __attribute__((vector_size(16)));
6 vec f(vec x,vec y){
7 return x<y|x==y;
10 /* { dg-final { scan-tree-dump-times " <= " 1 "reassoc1" } } */