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
/
pr23098.c
blob
3ff4b6435ccc207bd8cb66025c5a6c3e6722e5c9
1
/* PR rtl-optimization/23098 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -fPIC" } */
4
/* { dg-final { scan-assembler-not "\.LC\[0-9\]" } } */
5
/* { dg-require-effective-target ilp32 } */
6
7
double
foo
(
float
);
8
9
double
10
f1
(
void
)
11
{
12
return
foo
(
1.0
);
13
}
14
15
double
16
f2
(
void
)
17
{
18
return
foo
(
0.0
);
19
}
20
21
void
22
f3
(
float
*
x
,
float
t
)
23
{
24
*
x
=
0.0
+
t
;
25
}