gccrs: Placate clang-format re 'gcc/rust/backend/rust-tree.cc'

Reformat the upstream GCC commit f4a2ae2338
"Change MODE_BITSIZE to MODE_PRECISION for MODE_VECTOR_BOOL" change to
'gcc/rust/backend/rust-tree.cc' to clang-format's liking.

	gcc/rust/
	* backend/rust-tree.cc (c_common_type_for_mode): Placate clang-format.
This commit is contained in:
Thomas Schwinge 2024-03-12 09:36:43 +01:00 committed by Arthur Cohen
parent b2a6d97572
commit 240b7c8884

View file

@ -5371,8 +5371,8 @@ c_common_type_for_mode (machine_mode mode, int unsignedp)
else if (GET_MODE_CLASS (mode) == MODE_VECTOR_BOOL
&& valid_vector_subparts_p (GET_MODE_NUNITS (mode)))
{
unsigned int elem_bits
= vector_element_size (GET_MODE_PRECISION (mode), GET_MODE_NUNITS (mode));
unsigned int elem_bits = vector_element_size (GET_MODE_PRECISION (mode),
GET_MODE_NUNITS (mode));
tree bool_type = build_nonstandard_boolean_type (elem_bits);
return build_vector_type_for_mode (bool_type, mode);
}