Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/gcc.dg/pr105094.c
2023-03-06 14:48:14 +01:00

13 lines
233 B
C

/* PR tree-optimization/105094 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
struct S { short a; char b[~(__SIZE_TYPE__)0 / __CHAR_BIT__ - 1]; };
void bar (struct S *);
void
foo (void)
{
struct S s = { 5 };
bar (&s);
}