aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/gimplefe-53.c
blob: 926c77c74d42c889d78fa4367bbf8d388f4904f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-fgimple" } */

int __GIMPLE
foo (int a, int b)
{
  int tem;
  tem = a __EXACT_DIV b;
  tem = tem __CEIL_DIV b;
  tem = tem __FLOOR_DIV b;
  tem = tem __ROUND_DIV b;
  tem = tem __FLOOR_MOD b;
  tem = tem __CEIL_MOD b;
  tem = tem __ROUND_MOD b;
  return tem;
}