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

22 lines
226 B
C

/* { dg-do compile } */
/* { dg-options "-O2" } */
int a, b;
void
fn1 ()
{
int c;
switch (a)
{
case 8:
c = 0;
goto Label;
case 0:
case 1:
Label:
break;
default:
b = 0;
}
}