core: Simplify a line in int64x64-128.cc.

This commit is contained in:
Tolik Zinovyev
2022-03-19 13:19:53 -04:00
committed by Tom Henderson
parent df05ad1210
commit 07f9bd4ccb

View File

@@ -57,7 +57,7 @@ output_sign (const int128_t sa,
bool negB = sb < 0;
ua = negA ? -sa : sa;
ub = negB ? -sb : sb;
return (negA && !negB) || (!negA && negB);
return negA != negB;
}
void