Re: [PATCH] target/unicore32/translate: Add missing fallthrough annotations

2020-10-30 Thread Richard Henderson
On 10/30/20 2:31 AM, Thomas Huth wrote: > Looking at the way the code is formatted here (there is an empty > line after break statements, but none where the break is missing), > the fallthrough is very likely intended here. So add a fallthrough > comment to make the it compilable with -Werror=impli

[PATCH] target/unicore32/translate: Add missing fallthrough annotations

2020-10-30 Thread Thomas Huth
Looking at the way the code is formatted here (there is an empty line after break statements, but none where the break is missing), the fallthrough is very likely intended here. So add a fallthrough comment to make the it compilable with -Werror=implicit-fallthrough. Signed-off-by: Thomas Huth --