[Lint] Revert incorrect clang-format changes

This commit is contained in:
Triang3l
2021-08-26 21:18:18 +03:00
parent cb13f0bae6
commit f540c188bf
4 changed files with 11 additions and 8 deletions

View File

@@ -395,8 +395,9 @@ void Value::MulHi(Value* other, bool is_unsigned) {
(uint32_t)other->constant.i32) >>
32);
} else {
constant.i32 = (int32_t)(
((int64_t)constant.i32 * (int64_t)other->constant.i32) >> 32);
constant.i32 =
(int32_t)(((int64_t)constant.i32 * (int64_t)other->constant.i32) >>
32);
}
break;
case INT64_TYPE: