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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr47150.c
blob
559ddd70fdfc214336f5ac9acae17b6ebc09d8f2
1
/* PR c/47150 */
2
3
float
_Complex
foo
(
float
,
float
);
4
5
void
6
bar
()
7
{
8
float
w
=
2
;
9
float
_Complex b
;
10
b
=
0.5
* (
foo
(
0
,
w
) +
foo
(
1
,
w
) /
w
);
11
}