sim: avr: fix -Wimplicit-fallthrough warnings
authorMike Frysinger <vapier@gentoo.org>
Thu, 21 Dec 2023 06:28:52 +0000 (01:28 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 21 Dec 2023 06:59:22 +0000 (01:59 -0500)
Replace some fall through comments with the attribute.

sim/avr/interp.c

index eef4ad9..377398e 100644 (file)
@@ -896,7 +896,7 @@ step_once (SIM_CPU *cpu)
 
       case OP_reti:
        sram[SREG] |= SREG_I;
-       /* Fall through */
+       ATTRIBUTE_FALLTHROUGH;
       case OP_ret:
        {
          const struct avr_sim_state *state = AVR_SIM_STATE (CPU_STATE (cpu));