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
/
stack-layout-1.c
blob
b80d96d7d78458b460e0b92d9bb532073e617f5c
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -fno-strict-aliasing -fdump-rtl-expand" } */
3
union
U
{
4
int
a
;
5
float
b
;
6
};
7
struct
A
{
8
union
U u1
;
9
char
a
[
100
];
10
};
11
void
bar
(
struct
A
*);
12
void
foo
()
13
{
14
{
15
struct
A a
;
16
bar
(&
a
);
17
}
18
{
19
struct
A a
;
20
bar
(&
a
);
21
}
22
}
23
24
/* { dg-final { scan-rtl-dump-times "Partition" 1 "expand" } } */