view gcc/testsuite/gcc.dg/tree-ssa/pr68714.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* PR tree-optimization/68714 */
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-reassoc1 -w -Wno-psabi" } */

typedef int vec __attribute__((vector_size(16)));
vec f(vec x,vec y){
  return x<y|x==y;
}

/* { dg-final { scan-tree-dump-times " <= " 1 "reassoc1" } } */