core: Simplify a line in int64x64-128.cc.
This commit is contained in:
committed by
Tom Henderson
parent
df05ad1210
commit
07f9bd4ccb
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user