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
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
complex-3.c
blob
f12a8f9da4ae175c685eb2eab260c76931a5022a
1
/* PR 22116 */
2
3
void
g
(
_Complex
float
);
4
_Complex
float
f
(
int
data
,
_Complex
float
x
,
_Complex
float
y
)
5
{
6
_Complex
float
i
,
t
;
7
if
(
data
)
8
{
9
i
=
x
+
__imag__ y
;
10
g
(
i
);
11
}
12
else
13
i
=
5
;
14
t
=
x
+
__imag__ y
;
15
g
(
t
);
16
return
t
*
i
;
17
}