Sign in
ara-mdk
/
platform
/
external
/
clang
/
ad7e160e36a5010358ef33c4c81904297d62b9b2
/
.
/
test
/
Sema
/
fpack-struct.c
blob: 63766e9c9dbd87ff7f113f66572515fae40a2a1a [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -DEXPECTED_STRUCT_SIZE=5 -fpack-struct=1 %s
// RUN: %clang_cc1 -DEXPECTED_STRUCT_SIZE=6 -fpack-struct=2 %s
struct
s0
{
int
x
;
char
c
;
};
int
t0
[
sizeof
(
struct
s0
)
==
EXPECTED_STRUCT_SIZE
?:
-
1
];