File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -450,11 +450,11 @@ extension Int128: BinaryInteger {
450
450
@_transparent
451
451
public var _lowWord : UInt {
452
452
#if _pointerBitWidth(_64)
453
- UInt ( _low . _value)
453
+ UInt ( Builtin . trunc_Int128_Int64 ( _value) )
454
454
#elseif _pointerBitWidth(_32)
455
- UInt ( Builtin . trunc_Int64_Int32 ( _low . _value) )
455
+ UInt ( Builtin . trunc_Int128_Int32 ( _value) )
456
456
#else
457
- UInt ( truncatingIfNeeded: _low )
457
+ UInt ( truncatingIfNeeded: self )
458
458
#endif
459
459
}
460
460
}
Original file line number Diff line number Diff line change @@ -442,11 +442,11 @@ extension UInt128: BinaryInteger {
442
442
@_transparent
443
443
public var _lowWord : UInt {
444
444
#if _pointerBitWidth(_64)
445
- UInt ( _low . _value)
445
+ UInt ( Builtin . trunc_Int128_Int64 ( _value) )
446
446
#elseif _pointerBitWidth(_32)
447
- UInt ( Builtin . trunc_Int64_Int32 ( _low . _value) )
447
+ UInt ( Builtin . trunc_Int128_Int32 ( _value) )
448
448
#else
449
- UInt ( truncatingIfNeeded: _low )
449
+ UInt ( truncatingIfNeeded: self )
450
450
#endif
451
451
}
452
452
}
You can’t perform that action at this time.
0 commit comments