We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9986ea1 commit 54cc818Copy full SHA for 54cc818
src/util/expr.cpp
@@ -176,10 +176,9 @@ bool exprt::is_zero() const
176
CHECK_RETURN(false);
177
return rat_value.is_zero();
178
}
179
- else if(type_id==ID_unsignedbv ||
180
- type_id==ID_signedbv ||
181
- type_id==ID_c_bool ||
182
- type_id==ID_c_bit_field)
+ else if(
+ type_id == ID_unsignedbv || type_id == ID_signedbv ||
+ type_id == ID_c_bool || type_id == ID_c_bit_field)
183
{
184
return constant.value_is_zero_string();
185
0 commit comments