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
* Mainline merge as of 2006-02-16 (@111136).
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
complex-2.c
blob
4462eee45748f7911ef02714a76f4826784644be
1
/* PR 22103 */
2
3
_Complex
float
f
(
void
);
4
void
*
a
;
5
6
_Complex
float
g
(
void
)
7
{
8
_Complex
float
x
=
f
();
9
__imag__ x
=
1.0
;
10
if
(
__imag__ x
!=
1.0
)
11
{
12
a
= &
x
;
13
}
14
return
x
;
15
}
16