aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/cmpexactdiv-4.c
blob: 13703096f3068c73439f0299f8c77ebacdfcb486 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-optimized-raw" } */

int f(int*a,int*b,int*c){
  __PTRDIFF_TYPE__ x = -(b - a);
  __PTRDIFF_TYPE__ y = -(c - a);
  return x < y;
}

/* { dg-final { scan-tree-dump-not "exact_div_expr" "optimized" } } */