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
/
tree-ssa
/
pr17153.C
blob
91b4cfe1503eba9723a235c696cc20fe8957609e
1
/* The alias analyzer was marking RETVAL non-addressable, but RETVAL
2
is a special variable that's available across different functions. */
3
void foo(const char*);
4
5
struct A {};
6
7
struct B : A
8
{
9
B(){}
10
B bar()
11
{
12
foo(__PRETTY_FUNCTION__);
13
return B();
14
};
15
};
16
17
B b=B().bar();