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
PR middle-end/27945
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pragma-pack-5.c
blob
897686f772ae547c383e4297cd9b56febb6609b8
1
/* Check that pragma pack overrides STRUCTURE_SIZE_BOUNDARY. */
2
/* { dg-do compile } */
3
4
#pragma pack(1)
5
struct
S
6
{
7
char
a
;
8
};
9
10
int
test
[
sizeof
(
struct
S
) ==
1
?
1
: -
1
];