mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-12-01 15:54:17 +08:00
silence empty-body warning
gcc/ChangeLog: * gimple-pretty-print.c (dump_binary_rhs): Use braces to silence empty-body warning with gcc_fallthrough.
This commit is contained in:
parent
2e0f4a18bc
commit
3870268b27
@ -444,7 +444,9 @@ dump_binary_rhs (pretty_printer *buffer, const gassign *gs, int spc,
|
||||
break;
|
||||
}
|
||||
else
|
||||
gcc_fallthrough ();
|
||||
{
|
||||
gcc_fallthrough ();
|
||||
}
|
||||
case COMPLEX_EXPR:
|
||||
case VEC_WIDEN_MULT_HI_EXPR:
|
||||
case VEC_WIDEN_MULT_LO_EXPR:
|
||||
|
Loading…
Reference in New Issue
Block a user