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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr71104-2.c
blob
03c52a338c3eae9364e6899720d81bfcc17e4e75
1
/* { dg-do compile } */
2
3
struct
Foo
{
char
c
[
1024
]; };
4
void
foo
(
void
);
5
struct
Foo
baz
(
void
)
__attribute__
((
returns_twice
));
6
struct
Foo
*
p
;
7
8
void
bar
(
void
)
9
{
10
foo
();
11
*
p
=
baz
();
12
}