view gcc/testsuite/gcc.dg/tree-ssa/pr68714.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
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" } } */