Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.target/aarch64/pr103147-4.c
2023-03-06 14:48:14 +01:00

12 lines
484 B
C

/* { dg-options "-fpack-struct=8" } */
#include <arm_neon.h>
int assert1[__alignof__(int32x2_t) == 8 ? 1 : -1];
int assert2[__alignof__(int32x4_t) == 16 ? 1 : -1];
int assert3[__alignof__(int32x2x2_t) == 8 ? 1 : -1];
int assert4[__alignof__(int32x4x2_t) == 8 ? 1 : -1];
int assert5[__alignof__(int32x2x3_t) == 8 ? 1 : -1];
int assert6[__alignof__(int32x4x3_t) == 8 ? 1 : -1];
int assert7[__alignof__(int32x2x4_t) == 8 ? 1 : -1];
int assert8[__alignof__(int32x4x4_t) == 8 ? 1 : -1];