clang-format
This commit is contained in:
@@ -43,14 +43,12 @@
|
||||
* is less than either x or y (the choice to compare with x or y is
|
||||
* arbitrary).
|
||||
*/
|
||||
long long
|
||||
__adddi3(long long a, long long b)
|
||||
{
|
||||
union uu aa, bb, sum;
|
||||
long long __adddi3(long long a, long long b) {
|
||||
union uu aa, bb, sum;
|
||||
|
||||
aa.ll = a;
|
||||
bb.ll = b;
|
||||
sum.ui[L] = aa.ui[L] + bb.ui[L];
|
||||
sum.ui[H] = aa.ui[H] + bb.ui[H] + (sum.ui[L] < bb.ui[L]);
|
||||
return (sum.ll);
|
||||
aa.ll = a;
|
||||
bb.ll = b;
|
||||
sum.ui[L] = aa.ui[L] + bb.ui[L];
|
||||
sum.ui[H] = aa.ui[H] + bb.ui[H] + (sum.ui[L] < bb.ui[L]);
|
||||
return (sum.ll);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user