repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
gimplefe-53.c
blob
926c77c74d42c889d78fa4367bbf8d388f4904f2
1
/* { dg-do compile } */
2
/* { dg-options "-fgimple" } */
3
4
int
__GIMPLE
5
foo
(
int
a
,
int
b
)
6
{
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
;
16
}