mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
sim: frv: fix -Wimplicit-fallthrough warnings
Replace some fall through comments with the attribute.
This commit is contained in:
parent
fcad8e6ba7
commit
aab7152186
@ -136,7 +136,7 @@ frv_cache_reconfigure (SIM_CPU *current_cpu, FRV_CACHE *cache)
|
||||
break;
|
||||
}
|
||||
}
|
||||
/* fall through */
|
||||
ATTRIBUTE_FALLTHROUGH;
|
||||
default:
|
||||
/* Set the cache to its original settings. */
|
||||
cache->sets = cache->configured_sets;
|
||||
|
@ -835,7 +835,7 @@ set_exception_status_registers (
|
||||
{
|
||||
case FRV_DIVISION_EXCEPTION:
|
||||
set_isr_exception_fields (current_cpu, item);
|
||||
/* fall thru to set reg_index. */
|
||||
ATTRIBUTE_FALLTHROUGH; /* To set reg_index. */
|
||||
case FRV_COMMIT_EXCEPTION:
|
||||
/* For fr550, always use ESR0. */
|
||||
if (STATE_ARCHITECTURE (sd)->mach == bfd_mach_fr550)
|
||||
@ -855,7 +855,7 @@ set_exception_status_registers (
|
||||
break;
|
||||
case FRV_DATA_ACCESS_EXCEPTION:
|
||||
set_daec = 1;
|
||||
/* fall through */
|
||||
ATTRIBUTE_FALLTHROUGH;
|
||||
case FRV_DATA_ACCESS_MMU_MISS:
|
||||
case FRV_MEM_ADDRESS_NOT_ALIGNED:
|
||||
/* Get the appropriate ESR, EPCR, EAR and EDR.
|
||||
|
Loading…
Reference in New Issue
Block a user