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:
Tobias Burnus 2020-06-18 13:19:03 +02:00
parent 2e0f4a18bc
commit 3870268b27

View File

@ -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: