repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
i386
/
pr23268.c
blob
b5645b2974eb35a2a43fb53f9d079c4f7171c41c
1
/* PR target/23268 */
2
/* Testcase reduced by Andrew Pinski */
3
/* { dg-do compile } */
4
/* { dg-options "-O1 -ffast-math" } */
5
6
int
7
f
(
float
x
)
8
{
9
int
a
,
b
;
10
a
=
__builtin_log
(
2
.
f
);
11
b
=
__builtin_lrint
(
x
);
12
return
(
a
+
b
);
13
}