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
2018-10-23 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
tree-ssa
/
pr17153.C
blob
658225e6ecca950274ca5485c2da4d96583da919
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();