Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
3335eb7f7c5b82f109c585fb4009ff8240b11a84
/
.
/
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
];