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
Tighten condition in vect/pr85586.c (PR 85654)
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr27314.c
blob
d99be5eb805f42d64da1b53e3a67e95304a77b34
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -ffast-math" } */
3
4
extern
double
floor
(
double
);
5
6
inline
int
bar
(
double
x
)
7
{
8
return
(
int
)
floor
(
x
);
9
}
10
11
int
foo
(
int
i
)
12
{
13
return
bar
(
i
);
14
}