brintos

brintos / llvm-project-archived public Read only

0
0
Text · 229 B · 63766e9 Raw
10 lines · c
1// RUN: %clang_cc1 -DEXPECTED_STRUCT_SIZE=5 -fpack-struct=1 %s2// RUN: %clang_cc1 -DEXPECTED_STRUCT_SIZE=6 -fpack-struct=2 %s3 4struct s0 {5       int x;6       char c;7};8 9int t0[sizeof(struct s0) == EXPECTED_STRUCT_SIZE ?: -1];10