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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.dg
/
opt
/
nrv2.C
blob
4ffc075878d3671de5c2672a88517093c62f9053
1
// Test for the named return value optimization, this time with inlining.
2
// { dg-do run }
3
// { dg-options -O2 }
4
5
int c;
6
int d;
7
8
struct A
9
{
10
A() { ++c; }
11
A(const A&) { ++c; };
12
~A() { ++d; }
13
};
14
15
inline A f ()
16
{
17
A a;
18
return a;
19
}
20
21
int main ()
22
{
23
{
24
A a = f ();
25
}
26
27
return !(c == 1 && c == d);
28
}