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
/
g++.dg
/
opt
/
complex6.C
blob
bedb3ed5ffaf5ee1f4a5910597646de844886894
1
// PR 30168
2
// { dg-do compile }
3
// { dg-options "-O2" }
4
5
struct aaa
6
{
7
aaa(_Complex float __z) ;
8
_Complex float _M_value;
9
};
10
aaa::aaa(_Complex float __z)
11
{
12
__z*=2.0f;
13
_M_value = __z;
14
}