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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr33483.c
blob
8fe2a946bba2772aa2d3278a41f0cc2ac6bbd703
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
long double
f1
(
long double
x
)
5
{
6
return
__builtin_fmodl
(
x
,
x
);
7
}
8
9
long double
f2
(
long double
x
)
10
{
11
return
__builtin_remainderl
(
x
,
x
);
12
}