libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git] / gcc / testsuite / gcc.dg / gimplefe-53.c
blob926c77c74d42c889d78fa4367bbf8d388f4904f2
1 /* { dg-do compile } */
2 /* { dg-options "-fgimple" } */
4 int __GIMPLE
5 foo (int a, int b)
7 int tem;
8 tem = a __EXACT_DIV b;
9 tem = tem __CEIL_DIV b;
10 tem = tem __FLOOR_DIV b;
11 tem = tem __ROUND_DIV b;
12 tem = tem __FLOOR_MOD b;
13 tem = tem __CEIL_MOD b;
14 tem = tem __ROUND_MOD b;
15 return tem;