1 /* PR tree-optimization/68714 */
2 /* { dg-do compile } */
3 /* { dg-options "-O2 -fdump-tree-reassoc1 -w -Wno-psabi" } */
4 
5 typedef int vec __attribute__((vector_size(16)));
f(vec x,vec y)6 vec f(vec x,vec y){
7   return x<y|x==y;
8 }
9 
10 /* { dg-final { scan-tree-dump-times " <= " 1 "reassoc1" } } */
11