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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
compat
/
pr83487-1.h
blob
f39d5fd89dd3eb97cb052ed122ad17b6fd1b4998
1
#ifdef PR83487_LARGE
2
struct
__attribute__
((
aligned
(
128
)))
A
{};
3
struct
B
{};
4
struct
C
{
struct
B c
[
128
]; };
5
#else
6
struct
__attribute__
((
aligned
(
16
)))
A
{};
7
struct
B
{};
8
struct
C
{
struct
B c
[
16
]; };
9
#endif