Mercurial > hg > CbC > CbC_llvm
view clang/test/Sema/fpack-struct.c @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
line wrap: on
line source
// 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];